blob: be93a9832670eda9e6332ad6b8d691380399e6e5 [file] [log] [blame]
// Special g++ Options:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct O {
typedef char X;
};
template <class T>
struct S {
typedef double X;
template <class U>
struct I : public O<U> {
static X x; // WARNING - lookup finds S<T>::X
};
};
template <class T>
template <class U>
typename S<T>::X S<T>::I<U>::x;
int main()
{
return sizeof (S<int>::I<double>::x) == 1;
}