summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tnamespace.h
blob: 8c15e414fa191f54b00b5331c71813b77511c4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace A {
	enum {FIRST=1};
 extern int a;
	namespace B {
  extern int b;
  namespace C {
   extern int c;
		}
	}
}