Test capacity of ZST vector

Initially, #50233 accidentally changed the capacity of empty ZST. This
was pointed out during code review. This commit adds a test to prevent
capacity of ZST vectors from accidentally changing to prevent that
from happening again.
This commit is contained in:
Konrad Borowski 2018-12-11 15:07:07 +01:00
parent 128a1fa4e1
commit 1006425769

View file

@ -79,6 +79,11 @@ fn test_reserve() {
assert!(v.capacity() >= 33)
}
#[test]
fn test_zst_capacity() {
assert_eq!(Vec::<()>::new().capacity(), usize::max_value());
}
#[test]
fn test_extend() {
let mut v = Vec::new();