c++/24367: Infinite recursion of typedef substitution
[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.0307 seconds and 4 git commands to generate.