mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
269 B
Rust
15 lines
269 B
Rust
// run-pass
|
|
|
|
pub fn main() {
|
|
let mut x = None;
|
|
match x {
|
|
None => {
|
|
// It is ok to reassign x here, because there is in
|
|
// fact no outstanding loan of x!
|
|
x = Some(0);
|
|
}
|
|
Some(_) => { }
|
|
}
|
|
assert_eq!(x, Some(0));
|
|
}
|