No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / 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 () {}