[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Import / call-expr / Inputs / F.cpp
blobbd88df99ba41764afb218ae24e5320b33e25dc20
1 namespace NS {
2 struct X {};
3 void f(X) {}
4 void operator+(X, X) {}
5 } // namespace NS
6 void f() {
7 NS::X x;
8 f(x);
9 x + x;