Skip to content

Commit c278bc1

Browse files
joshlfscottmcm
andauthored
Update library/core/src/primitive_docs.rs
Co-authored-by: scottmcm <[email protected]>
1 parent 3fea7cc commit c278bc1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

library/core/src/primitive_docs.rs

+4
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,10 @@ mod prim_never {}
332332
///
333333
/// `char` is guaranteed to have the same size and alignment as `u32` on all
334334
/// platforms.
335+
/// ```
336+
/// use std::alloc::Layout;
337+
/// assert_eq!(Layout::new::<char>(), Layout::new::<u32>());
338+
/// ```
335339
///
336340
/// [Unicode code point]: https://www.unicode.org/glossary/#code_point
337341
/// [Unicode scalar value]: https://www.unicode.org/glossary/#unicode_scalar_value

0 commit comments

Comments
 (0)