rust/src/test/compile-fail/borrowck-assign-to-enum.rs

6 lines
98 B
Rust
Raw Normal View History

enum foo = int;
fn main() {
let x = foo(3);
*x = 4; //! ERROR assigning to enum content
}