ll->n->left->typecheck = 1;
f = f->down;
}
+ if(f != nil)
+ yyerror("too few values in struct initializer");
} else {
// keyed list
for(ll=n->list; ll; ll=ll->next) {
func main() {
s1 := S{a: 7}; // ok - field is named
s3 := S{7, 11}; // ok - all fields have values
- s2 := S{7}; // bug - should not compile since not all fields have values
+ s2 := S{7}; // ERROR "too few"
}
=========== bugs/bug187.go
BUG: 0 1
-=========== bugs/bug189.go
-BUG: errchk: command succeeded unexpectedly
-
=========== bugs/bug190.go
bugs/bug190.go:11: invalid recursive type []S
bugs/bug190.go:16: invalid recursive type S