2011-08-12 17:42:39 -05:00
|
|
|
// error-pattern:attempted field access on type [int]
|
2011-06-22 23:22:27 -05:00
|
|
|
// issue #367
|
|
|
|
|
|
|
|
fn f() {
|
2011-08-12 17:42:39 -05:00
|
|
|
let v = ~[1];
|
2011-07-27 07:19:39 -05:00
|
|
|
log v.some_field_name; //type error
|
2011-06-22 23:22:27 -05:00
|
|
|
}
|
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn main() { }
|