mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
12 lines
131 B
Rust
12 lines
131 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
|
|
|
|
pub fn main() {
|
|
let _: Box<isize>;
|
|
}
|
|
|
|
fn f(_i: Box<isize>) -> Box<isize> {
|
|
panic!();
|
|
}
|