blob: 275c3f9579870f19663d3e3399f0e4348419d8d7 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail5953s1.d(10): Error: expression expected, not `,`
---
*/
void main()
{
struct S{}
S s2 = {,}; // invalid, but compiles
}