blob: ce8c940a57be448034c704416df350959c5c976c [file] [log] [blame]
// { dg-do run }
// { dg-options "-fno-druntime" }
// 'a' should not be default initialized to -1.
static char a = void;
extern (C) void main()
{
assert(a == 0);
}