rust/tests/ui/borrowck/borrowck-match-binding-is-assignment.rs

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

42 lines
615 B
Rust
Raw Normal View History

// Test that immutable pattern bindings cannot be reassigned.
enum E {
Foo(isize)
}
struct S {
bar: isize,
}
pub fn main() {
2015-01-31 16:23:42 +00:00
match 1 {
x => {
x += 1; //~ ERROR [E0384]
}
}
match E::Foo(1) {
E::Foo(x) => {
x += 1; //~ ERROR [E0384]
}
}
match (S { bar: 1 }) {
S { bar: x } => {
x += 1; //~ ERROR [E0384]
}
}
2015-01-31 16:23:42 +00:00
match (1,) {
(x,) => {
x += 1; //~ ERROR [E0384]
}
}
2015-01-31 16:23:42 +00:00
match [1,2,3] {
[x,_,_] => {
x += 1; //~ ERROR [E0384]
}
}
}