mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
155 B
Rust
15 lines
155 B
Rust
// check-pass
|
|
|
|
#![deny(unused_mut)]
|
|
|
|
pub fn foo() {
|
|
return;
|
|
|
|
let mut v = 0;
|
|
assert_eq!(v, 0);
|
|
v = 1;
|
|
assert_eq!(v, 1);
|
|
}
|
|
|
|
fn main() {}
|