blob: 7be33240999c438b72e425f14831560e3995aa6a [file] [log] [blame]
// APPLE LOCAL file mainline 2005-12-02 Radar 4458276
// PR c++/24173
// { dg-options "--param ggc-min-expand=0 --param ggc-min-heapsize=0" }
template <int> struct A;
void foo(A<0>);
template<int> struct A
{
friend void foo(A<0>);
};
void bar()
{
foo(A<0>());
}