blob: b1c03690be53ffa446795024ec5fde13f8ffe2f0 [file] [log] [blame]
// PR c++/14002
template <typename T> void foo (T x) { x; }
void bar() { foo(0); }
struct A
{
friend void foo<int> (int);
};