aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/const2.C
blob: 3aeae3c7e716c7a49735f09bba563c1a7053074c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Example of static member constants

extern "C" int printf (const char *, ...);

struct T {
  static const char letter = 'a'; // this is the new stuff!
  char x[letter];
  void f();
};

void T::f() { printf ("%p", &letter); }
const char T::letter;               // still need def after class

main() { }