rustc/tests/ui/box/unit/unique-create.rs
2025-02-17 11:14:05 +01:00

11 lines
115 B
Rust

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