Update copyright year range in all GDB files
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / nsimport.cc
CommitLineData
8540c487
SW
1namespace A {
2 int x = 11;
3 namespace{
4 int xx = 22;
5 }
6}
7
8using namespace A;
9
10namespace{
11 int xxx = 33;
12};
13
14int main()
15{
7e4b9c4c
GB
16 (void) x;
17 (void) xx;
18 (void) xxx;
8540c487
SW
19 return 0;
20}
This page took 1.660611 seconds and 4 git commands to generate.