2011-12-18 12:30:40 -06: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() {
|
2011-08-19 17:16:48 -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() { }
|