I tried to pay attention to what was actually being tested so, e.g. when I test was just using a vec as a boxed thing, I converted to boxed ints, etc. Haven't converted the macro tests yet. Not sure what to do there.
9 lines
152 B
Rust
9 lines
152 B
Rust
// error-pattern:attempted field access on type [int]
|
|
// issue #367
|
|
|
|
fn f() {
|
|
let v = ~[1];
|
|
log v.some_field_name; //type error
|
|
}
|
|
|
|
fn main() { } |