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