OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / void2.C
1 // PR c++/27496
2 // { dg-do compile }
3
4 template<int> struct A
5 {
6   template<void> friend class X;  // { dg-error "void|valid type" }
7 };
8
9 A<0> a;