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