blob: 9dab2c3092434d6645b3dbfe4d43957379df0c4f (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
println!("{}", fancy_ref.num);
}
|