blob: 41172b362f495b296ce790ec1539dd36d63447f8 (
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);
}
|