rust/src/test/ui/unique/unique-create.rs
2019-07-27 18:56:16 +03:00

14 lines
165 B
Rust

// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(box_syntax)]
pub fn main() {
let _: Box<_> = box 100;
}
fn vec() {
vec![0];
}