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

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 14:31:43 +00:00
fn main() {
let x = 1;
let y = &mut x; //~ ERROR [E0596]
2017-05-27 14:31:43 +00:00
}