2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / constant3.C
blobc029e33ed5827652cc3ad1378eee361e4c072bc1
1 const int i = 1;
2 const int j (2);
3 const int k = { 3 };
5 enum { a = i, b = j, c = k };