rust/test/vecs.rs

16 lines
260 B
Rust
Raw Normal View History

2016-03-20 21:18:09 -05:00
#![feature(custom_attribute)]
#![allow(dead_code, unused_attributes)]
#[miri_run]
fn make_vec() -> Vec<i32> {
let v = Vec::with_capacity(4);
v.push(1);
v.push(2);
v
}
// #[miri_run]
// fn make_vec_macro() -> Vec<i32> {
// vec![1, 2]
// }