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

5 lines
67 B
Rust
Raw Normal View History

2017-05-27 16:31:43 +02:00
fn main() {
let x = 1;
let y = &mut x; //~ ERROR [E0596]
2017-05-27 16:31:43 +02:00
}