mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
270 B
D
19 lines
270 B
D
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/b19685.d(6): Error: overlapping default initialization for field `b` and `a`
|
|
---
|
|
*/
|
|
struct S
|
|
{
|
|
union
|
|
{
|
|
struct { int a = 123; }
|
|
struct { int b = 456; }
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S s;
|
|
assert(s.b == 123);
|
|
}
|