blob: 604697dae7a1fc26e0af1062425d54d8d907322e [file] [log] [blame]
// PR c++/29020
template<int> struct A
{
void foo();
};
struct B
{
template<int N> friend void A<N>::A::foo();
};