2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / abi / mangle10.C
blobd5782ba6dfcc5d1f42828b71c7cfd34b1bf278df
1 // { dg-options "-fabi-version=0" }
3 template <template <typename> class Q>
4 void f (typename Q<int>::X) {}
6 template <typename Q>
7 struct S {
8   typedef int X;
9 };
11 template void f<S> (int);
13 // { dg-final { scan-assembler _Z1fI1SEvNT_IiE1XE } }