2012-07-10 15:55:19 -05:00
|
|
|
// error-pattern:attempted access of field `some_field_name` on type `~[int]`
|
2011-06-22 23:22:27 -05:00
|
|
|
// issue #367
|
|
|
|
|
|
|
|
fn f() {
|
2012-06-29 18:26:56 -05:00
|
|
|
let v = ~[1i];
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, v.some_field_name); //type error
|
2011-06-22 23:22:27 -05:00
|
|
|
}
|
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn main() { }
|