[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend61a.C
blobd38e53ae4bb7ca4d7f04f5922f41acd230e86277
1 // PR c++/69323
3 template<int VALUE>
4 struct Outer
6   struct StupidValueTrick
7   {
8     template<int VAL> friend struct StupidValueTrick; // { dg-error "not a template" }
9   };
11 typedef Outer<42>::StupidValueTrick GoodValue;
12 GoodValue good;