xref: /aosp_15_r20/external/clang/test/Modules/Inputs/merge-dependent-friends/c.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li namespace N { template<typename T> struct A { friend int f(A); }; }
2*67e74705SXin Li // It would seem like this variable should be called 'c'.
3*67e74705SXin Li // But that makes the original problem disappear...
4*67e74705SXin Li int e = f(N::A<int>());
5*67e74705SXin Li #include "a.h"
6*67e74705SXin Li #include "b.h"
7