[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / access14.C
blob047f9258f2f8151dd71251ebde46eb238720023c
1 // PR c++/14777
3 template <typename T>
4 struct B
6 protected:
7   typedef int M;
8 };
10 template <typename T>
11 struct A : B<T> {
12   typedef typename B<T>::M N;
13   A (int = N ());
16 A<int> a = A<int> ();