Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
159 B
C++
Raw Permalink Normal View History

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