OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / void12.C
1 // PR c++/28639
2
3 template<void> struct A  // { dg-error "not a valid type" }
4 {
5   static const int i = 1;
6   char a[i];
7 };