We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e355c9e commit d77b930Copy full SHA for d77b930
tests/tests.rs
@@ -485,3 +485,18 @@ fn test_default() {
485
assert_eq!(s.len(), 0);
486
assert_eq!(v.len(), 0);
487
}
488
+
489
+#[cfg(feature="array-sizes-33-128")]
490
+#[test]
491
+fn test_sizes_33_128() {
492
+ ArrayVec::from([0u8; 52]);
493
+ ArrayVec::from([0u8; 127]);
494
+}
495
496
+#[cfg(feature="array-sizes-129-255")]
497
498
+fn test_sizes_129_255() {
499
+ ArrayVec::from([0u8; 237]);
500
+ ArrayVec::from([0u8; 255]);
501
502
0 commit comments