2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / namespace-nested-import.cc
CommitLineData
794684b6
SW
1namespace A{
2 namespace B{
3 namespace C{
4 int x = 5;
5 }
6 }
7}
8
9int main(){
10 using namespace A::B;
11 return C::x;
12}
This page took 0.31008 seconds and 4 git commands to generate.