mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-09 03:38:18 +00:00
7 lines
108 B
Rust
7 lines
108 B
Rust
//@ run-pass
|
|
|
|
pub fn main() {
|
|
let i: isize = if false { panic!() } else { 5 };
|
|
println!("{}", i);
|
|
}
|