blob: 7365b66801d174f31b69028df41e4a88f71ed08a [file] [log] [blame]
// Build don't link:
// Special g++ Options:
template <class T>
struct B {
typedef T X;
};
template <class T>
struct S : public B<T>
{
struct I {
void f(X x);
};
};