[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / merge-dependent-friends / c.h
blob3620ce3d539f908e81d2a0599d1a4488f03e89cc
1 namespace N { template<typename T> struct A { friend int f(A); }; }
2 // It would seem like this variable should be called 'c'.
3 // But that makes the original problem disappear...
4 int e = f(N::A<int>());
5 #include "a.h"
6 #include "b.h"