rust/tests/ui/error-codes/E0389.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
257 B
Rust
Raw Normal View History

2016-08-06 14:44:49 -05:00
struct FancyNum {
num: u8,
}
fn main() {
let mut fancy = FancyNum{ num: 5 };
let fancy_ref = &(&mut fancy);
fancy_ref.num = 6; //~ ERROR cannot assign to `fancy_ref.num`, which is behind a `&` reference
2016-08-06 14:44:49 -05:00
println!("{}", fancy_ref.num);
}