Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / abi / mangle17.C
blob134b976a271519a3a57f6d62f6cbaf90ddafeb1e
1 // { dg-options "-Wabi -fabi-version=1" }
3 enum E { e = 3 };
5 template <int I> struct S {};
7 template <int I> void f (S<I + e + int (3.7)>) {} // { dg-warning "mangle" }
8 template void f<7>(S<7 + e + int (3.7)>);  
10 template <int I> void g (S<I + e + int (3.7)>) {} // { dg-warning "mangle" }
11 template void g<7>(S<7 + e + int (3.7)>);