mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 19:28:02 +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);
|
|
}
|