rust/tests/ui/box/unit/unique-create.rs
2024-02-16 20:02:50 +00:00

12 lines
148 B
Rust

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