]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/call-expr/Inputs/F.cpp
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / test / Import / call-expr / Inputs / F.cpp
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;
10 }