OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / enum4.C
1 // Build don't link:
2
3 template <class T>
4 struct U
5 {
6   T mT;
7 };
8  
9 template <class H>
10 struct M
11 {
12   enum FLAG {On, Off};
13   U<FLAG> mUF;
14 };
15
16 M<char> gm;