Handle void * conversions in FreeBSD/x86 native code to fix C++ build.
[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.768624 seconds and 4 git commands to generate.