7 lines
82 B
Rust
7 lines
82 B
Rust
|
|
|
|
fn main() {
|
|
let i: int = if false { fail } else { 5 };
|
|
log(debug, i);
|
|
}
|