We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fea7cc commit c278bc1Copy full SHA for c278bc1
library/core/src/primitive_docs.rs
@@ -332,6 +332,10 @@ mod prim_never {}
332
///
333
/// `char` is guaranteed to have the same size and alignment as `u32` on all
334
/// platforms.
335
+/// ```
336
+/// use std::alloc::Layout;
337
+/// assert_eq!(Layout::new::<char>(), Layout::new::<u32>());
338
339
340
/// [Unicode code point]: https://www.unicode.org/glossary/#code_point
341
/// [Unicode scalar value]: https://www.unicode.org/glossary/#unicode_scalar_value
0 commit comments