blob: 542fae586ca8a3336952b8b493d09a0a7524e94c [file] [log] [blame]
// { dg-options "-std=c++0x" }
template<int...> struct A
{
void foo();
};
struct B
{
template<int N> friend void A<N>::A::foo(); // { dg-error "declared as friend" }
};