llvm-project/lldb/test/API/commands/expression/inline-namespace/main.cpp

11 lines
159 B
C++

namespace A {
inline namespace B {
int f() { return 3; }
};
}
int main(int argc, char **argv) {
// Set break point at this line.
return A::f();
}