We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b735a7 commit 17044c1Copy full SHA for 17044c1
library/alloc/src/collections/btree/node/tests.rs
@@ -94,6 +94,7 @@ fn test_partial_eq() {
94
95
#[test]
96
#[cfg(target_arch = "x86_64")]
97
+#[cfg_attr(miri, ignore)] // We'd like to run Miri with layout randomization
98
fn test_sizes() {
99
assert_eq!(core::mem::size_of::<LeafNode<(), ()>>(), 16);
100
assert_eq!(core::mem::size_of::<LeafNode<i64, i64>>(), 16 + CAPACITY * 2 * 8);
0 commit comments