aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/const3.C
blob: 49360a4fabe43aec04352905f7d5eb6b304dc0ee (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;

main()
{
  return bar != 5;
}