Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / abi / mangle12.C
bloba3bd9ff6fa721da19e4f21837f758c14152fa09c
1 // { dg-options "-Wabi -fabi-version=1" }
3 template <template <typename> class Q>
4 void f (typename Q<int>::X) {} // { dg-warning "mangle" }
6 template <typename Q>
7 struct S {
8   typedef int X;
9 };
11 template void f<S> (int);