summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tnamespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'tolua/src/tests/tnamespace.h')
-rw-r--r--tolua/src/tests/tnamespace.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tolua/src/tests/tnamespace.h b/tolua/src/tests/tnamespace.h
new file mode 100644
index 0000000..8c15e41
--- /dev/null
+++ b/tolua/src/tests/tnamespace.h
@@ -0,0 +1,11 @@
+namespace A {
+ enum {FIRST=1};
+ extern int a;
+ namespace B {
+ extern int b;
+ namespace C {
+ extern int c;
+ }
+ }
+}
+