rust/src/test/compile-fail/writing-to-immutable-obj.rs

5 lines
108 B
Rust
Raw Normal View History

// error-pattern:assigning to immutable obj field
2011-07-27 14:19:39 +02:00
obj objy(x: int) {
fn foo() { x = 5; }
}
2011-07-27 14:19:39 +02:00
fn main() { }