blob: 3850fdace3a5f537e5e830d4cceb91a23c89a82d [file] [log] [blame]
// PR c++/33959
template <typename T> struct A
{
struct C
{
template <typename U> struct D {};
};
template <typename S> static C::D<S> bar (S const &);
};
struct E {};
int
main ()
{
E e;
A<E>::bar (e);
}