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:
parent
128a1fa4e1
commit
1006425769
1 changed files with 5 additions and 0 deletions
|
@ -79,6 +79,11 @@ fn test_reserve() {
|
||||||
assert!(v.capacity() >= 33)
|
assert!(v.capacity() >= 33)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_zst_capacity() {
|
||||||
|
assert_eq!(Vec::<()>::new().capacity(), usize::max_value());
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_extend() {
|
fn test_extend() {
|
||||||
let mut v = Vec::new();
|
let mut v = Vec::new();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue