PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend61b.C
blob2da5d60b55e319b5a4968fad2ce1576fd0e63424
1 // PR c++/69323
3 template<int VALUE>
4 struct Outer
6   struct StupidValueTrick
7   {
8     template<int VAL> friend struct Outer::StupidValueTrick; // { dg-error "not a template" }
9   };
11 typedef Outer<42>::StupidValueTrick GoodValue;
12 GoodValue good;