aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/merge-dependent-friends/b.h
blob: bce33876d54d0a1abe45400b06e55b9a4f9ee83a (plain) (blame)
1
2
namespace N { template<typename T> struct A { friend int f(A); }; }
int b = f(N::A<int>());