Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / abi / mangle8.C
blob6a073588aae572c884c08a7b51db5e1557d22a02
1 // Red Hat bugzilla 65035
2 // Bug: We were encoding the name of the instantiation as 'operator int'
3 // rather than 'operator T'.
4 // { dg-do compile }
6 struct C {
7     template <class T>
8     operator T ();
9 };
11 template <class T>
12 C::operator T () { return 0; }
14 template C::operator int ();
16 // { dg-final { scan-assembler _ZN1CcvT_IiEEv } }