Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / abi / mangle12.C
blob3910cfc93ebf2155768b7d09972b318de1cdb9d3
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);  // { dg-message "instantiated" }