PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / partial-specialization5.C
blob7a8db5a96612199be21a4be91ace1088d21e3c3a
1 // PR c++/41727
3 struct tag0;
5 template < class Tag > struct outer
7   template < typename Arg0, typename Arg1 > struct inner;
8 };
10 template < int Value > struct value_wrap { };
12 template </* class Tag */>
13 template < typename Arg0, int Arg1 >
14 struct outer <tag0 >::inner < Arg0, value_wrap < Arg1 > >
16   typedef Arg0 type;
19 typedef outer < tag0 >
20 ::inner < tag0, value_wrap < 999 > >
21 ::type                          // { dg-bogus "incomplete" "" { xfail *-*-* } }
22   outer_inner_type;