diff --git a/src/vec.rs b/src/vec.rs index 0dc25f1dd1..1bbd924ce5 100644 --- a/src/vec.rs +++ b/src/vec.rs @@ -58,9 +58,6 @@ impl Vec { /// ``` /// `Vec` `const` constructor; wrap the returned value in [`Vec`](../struct.Vec.html) pub const fn new() -> Self { - // Const assert N >= 0 - crate::sealed::greater_than_eq_0::(); - Self { len: 0, buffer: Self::INIT,