blob: 05a8186e03a511cec57c7ad9a4c074a395262651 [file] [log] [blame]
// PR c++/27496
// { dg-do compile }
template<int> struct A
{
template<void> friend class X; // { dg-error "void" }
};
A<0> a;