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

6 lines
124 B
Rust
Raw Normal View History

// xfail-stage0
// 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() { }