Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / nested5.C
blob3850fdace3a5f537e5e830d4cceb91a23c89a82d
1 // PR c++/33959
3 template <typename T> struct A
5   struct C
6   {
7     template <typename U> struct D {};
8   };
9   template <typename S> static C::D<S> bar (S const &);
12 struct E {};
14 int
15 main ()
17   E e;
18   A<E>::bar (e);