OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / crash12.C
1 // Build don't link:
2 // Special g++ Options: -g
3
4 template <class C>
5 class CenteringTag {
6 };
7
8 struct S {
9   template <class B, class C>
10   static void f() {
11     CenteringTag<C> ctag;
12   }
13 };