blob: f19dc9c628b9aeff5e195cea2ce811d218572892 [file] [log] [blame]
namespace N {
template <typename T>
static void f ();
struct S {
friend void N::f<int> ();
static void f (int);
};
}