Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / enum.C
blobf2192e794fca29592df91fc03620254e4c9c3ee9
1 // { dg-do assemble  }
2 // GROUPS passed enums
3 template<class T>
4 struct templ
6     enum { val = 0 };
7 };
8 struct Foo
10     enum {
11         bar = 0,
12         len = templ<int>::val
13     };
15 void func()
17     int s = Foo::bar;   // Ensure that expansion of templ did not erase bar