blob: d66ff5d20d34798e7246c9590b9f0e3bfb7af8bd [file] [log] [blame]
/*
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
}