You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
11 lines
159 B
C++
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();
|
||
|
|
}
|