blob: 74062c2dc2e69b551a0414cb50f98ffeb5acc2b1 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag11132.d(22): Error: overlapping initialization for field a and b
---
*/
struct S
{
int x;
union
{
int a;
int b;
}
int z;
}
void main()
{
S s = { 1, 2, 3 };
}