blob: 3ff8f0c89a676c81cbb2cc0a38e19ab183f4feba [file] [log] [blame]
// Bug: bar isn't emitted, which causes havoc.
extern int i;
const int bar = i;
int i = 5;
int main()
{
return bar != 5;
}