aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/const3.C
blob: 3ff8f0c89a676c81cbb2cc0a38e19ab183f4feba (plain)
1
2
3
4
5
6
7
8
9
10
// Bug: bar isn't emitted, which causes havoc.

extern int i;
const int bar = i;
int i = 5;

int main()
{
  return bar != 5;
}