// https://issues.dlang.org/show_bug.cgi?id=22570 | |
/* | |
TEST_OUTPUT: | |
--- | |
fail_compilation/fail22570.d(19): Error: more initializers than fields (1) of `S` | |
fail_compilation/fail22570.d(20): Error: more initializers than fields (1) of `S` | |
--- | |
*/ | |
struct S | |
{ | |
Object o1; | |
} | |
void main() @safe | |
{ | |
S[] s; | |
s = [S(null, null)]; | |
s ~= S(null, null); | |
} |