summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tmodule.pkg
diff options
context:
space:
mode:
Diffstat (limited to 'tolua/src/tests/tmodule.pkg')
-rw-r--r--tolua/src/tests/tmodule.pkg16
1 files changed, 16 insertions, 0 deletions
diff --git a/tolua/src/tests/tmodule.pkg b/tolua/src/tests/tmodule.pkg
new file mode 100644
index 0000000..43d4306
--- /dev/null
+++ b/tolua/src/tests/tmodule.pkg
@@ -0,0 +1,16 @@
+
+$#include "tmodule.h"
+
+module A {
+ extern int a;
+ module B {
+ extern int b;
+ module C {
+ extern int c;
+ }
+ }
+}
+
+module A {
+ extern int d;
+}