PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / error10.C
bloba61d22f1916d447366207d99e3de2fa514797450
1 // { dg-do compile }
2 // { dg-options "-std=gnu++98" }
3 // Origin: <tilps at hotmail dot com>
4 // c++/9154: poor error message for ">>" vs "> >" in template argument list
7 /*
8  * Test that the error message is issued properly
9  */
10 template <class T>
11 class A {};
13 A<A<int>> blah;  // { dg-error "should be '> >' within" }
14 A<int>> blah2; // { dg-error "spurious '>>'" }
18  * Test that a few valid constructs containing a ">>" token in a
19  * template argument list are handled correctly.
20  */
21 template <int N>
22 void B(void) {}
24 int Btest()
26   B<256 >> 4>();
27   return 0;
30 template <int N = 123>>4>
31 struct C {};
33 template <int>      struct D {};
34 template <typename> struct E {};
36 E<D< 1>>2 > > E1;
38 const int x = 0;
39 E<D< 1>>x > > E2;
41 template <int> struct F {
42   typedef int I;
45 template <typename T = F< 1>>2 >::I>
46 struct G {};
49  * In this special case, a valid type-id (H() is a function type) is followed
50  * by '>>', but the argument should still be parsed as an expression, which
51  * will then be rejected as non-constant expression.
52  */
53 struct H
55   int operator >>(int);
58 template <int V> struct L {};
59 L<H() >> 5> l;  // { dg-error "" "non-constant" }
63  * This case used to not emit the nice error message because of a typo
64  *  in the code.
65  */
66 template <void (*)(void)>
67 struct K {};
69 void KFunc(void);
71 A<K<&KFunc>> k1;  // { dg-error "" }
72 K<&KFunc>> k2; // { dg-error "" }