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

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

12 lines
245 B
Rust
Raw Normal View History

2016-08-25 22:14:20 +00:00
struct FancyNum {
num: u8,
}
fn main() {
let mut fancy_num = FancyNum { num: 5 };
let fancy_ref = &fancy_num;
fancy_num = FancyNum { num: 6 }; //~ ERROR [E0506]
2016-08-25 22:14:20 +00:00
println!("Num: {}, Ref: {}", fancy_num.num, fancy_ref.num);
}