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