mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
222 B
Rust
18 lines
222 B
Rust
// run-pass
|
|
|
|
#![deny(unused_mut)]
|
|
#![allow(dead_code)]
|
|
|
|
struct Foo {
|
|
pub value: i32
|
|
}
|
|
|
|
fn use_foo_mut(mut foo: Foo) {
|
|
foo = foo;
|
|
println!("{}", foo.value);
|
|
}
|
|
|
|
fn main() {
|
|
use_foo_mut(Foo { value: 413 });
|
|
}
|