Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / op1.C
blob7cc9c9e91c2c9cbf12c427073dd0b118c9c62cc8
1 template <class T> struct X {
2     typedef int type;
3 };
5 template <class T> struct O {
6     struct I {
7         operator typename X<T>::type ();
8     };
9 };
11 template <class T>
12 O<T>::I::operator typename X<T>::type () {}