structThing{a0: Foo,a1: Foo,a2: Foo,a3: Foo,a4: Foo,a5: Foo,a6: Foo,a7: Foo,a8: Foo,a9: Foo,}structFoo{field: Field,}structField;implFoo{fnbar(&self){}}fnbar(t: Thing){t.bar();//~ ERROR no method named `bar` found for struct `Thing`t.field;//~ ERROR no field `field` on type `Thing`}fnmain(){}