rustc/tests/ui/box/unit/unique-create.rs
2023-09-14 08:56:40 +02:00

12 lines
146 B
Rust

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