blob: ce411bb6c8b92b5eec635155f0379f4592a15a46 [file] [log] [blame]
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S {
template <class U>
struct I {
typedef U X;
X f();
};
};
template <class T>
template <class U>
typename S<T>::template I<U>::X S<T>::I<U>::f() {}