mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 08:48:01 +00:00
12 lines
148 B
Rust
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];
|
|
}
|