summaryrefslogtreecommitdiffstats
path: root/test/Import/call-expr/Inputs/F.cpp
blob: bd88df99ba41764afb218ae24e5320b33e25dc20 (plain)
1
2
3
4
5
6
7
8
9
10
namespace NS {
struct X {};
void f(X) {}
void operator+(X, X) {}
} // namespace NS
void f() {
  NS::X x;
  f(x);
  x + x;
}