* gdb.cp/cpcompletion.exp (test_class_complete): New procedure.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / namespace-nested-import.cc
1 namespace A{
2 namespace B{
3 namespace C{
4 int x = 5;
5 }
6 }
7 }
8
9 int main(){
10 using namespace A::B;
11 return C::x;
12 }
This page took 0.03106 seconds and 4 git commands to generate.