00001
00002 namespace That {
00003 int f1(int y) {
00004 return y;
00005 }
00006 };
00007
00008 int That::f2(int y) {
00009 return y;
00010 }
00011
00012 namespace Those { int f3(int z) {
00013 return z;
00014 } }
00015
00016 class This {
00017 int that;
00018
00019 int f0(int x) {
00020 return x;
00021 }
00022 };