aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/const1.C
blob: 7c26da1aea3ca0a67d485eec9c6c865ae129259d (plain)
1
2
3
4
5
6
7
8
9
// Build don't link:

struct S
{
  void f()
    {
      const int i; // ERROR - uninitialized const
    }
};