bolt/deps/llvm-18.1.8/clang/test/Import/call-expr/Inputs/F.cpp

11 lines
124 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
namespace NS {
struct X {};
void f(X) {}
void operator+(X, X) {}
} // namespace NS
void f() {
NS::X x;
f(x);
x + x;
}