feature on test

This commit is contained in:
Mark Mansi 2018-04-28 20:59:25 -05:00
parent c122b3a42c
commit 0212e0230a

View file

@ -10,6 +10,8 @@
// Test that Vec::new() can be used for constants
#![feature(const_vec_new)]
const MY_VEC: Vec<usize> = Vec::new();
pub fn main() {}