mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
160 B
Rust
9 lines
160 B
Rust
// run-pass
|
|
|
|
#![allow(unused_mut)]
|
|
|
|
|
|
fn foo(x: isize) { println!("{}", x); }
|
|
|
|
pub fn main() { let mut x: isize; if 1 > 2 { x = 12; } else { x = 10; } foo(x); }
|