rustc/tests/ui/box/unit/unique-create.rs
2024-06-21 09:39:33 +02: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];
}