9 lines
197 B
Rust
9 lines
197 B
Rust
// error-pattern:invalidate reference i
|
|
|
|
tag foo { left({mutable x: int}); right(bool); }
|
|
|
|
fn main() {
|
|
let x = left({mutable x: 10});
|
|
alt x { left(i) { x = right(false); log i; } _ { } }
|
|
}
|