dmd/compiler/test/fail_compilation/fail5953s2.d
2022-07-09 18:53:07 +02:00

13 lines
314 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail5953s2.d(12): Error: expression expected, not `,`
fail_compilation/fail5953s2.d(12): Error: expression expected, not `,`
fail_compilation/fail5953s2.d(12): Error: expression expected, not `,`
---
*/
void main()
{
struct S{}
S s3 = {,,,}; // invalid, but compiles
}