c++: fix explicit/copy problem [PR109247]
[official-gcc.git] / gcc / testsuite / gdc.dg / torture / init1.d
blobce8c940a57be448034c704416df350959c5c976c
1 // { dg-do run }
2 // { dg-options "-fno-druntime" }
3 // 'a' should not be default initialized to -1.
4 static char a = void;
6 extern (C) void main()
8 assert(a == 0);