summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/main.cpp
blob: c10b361a0cd49553296fec85e942bbb26c08953f (plain)
1
2
3
4
5
6
7
8
9
10
namespace A {
  inline namespace B {
    int f() { return 3; }
  };
}

int main(int argc, char **argv) {
  // Set break point at this line.
  return A::f();
}
OpenPOWER on IntegriCloud