diff options
Diffstat (limited to 'ThirdParty/toluapp/src/tests/tmodule.pkg')
-rw-r--r-- | ThirdParty/toluapp/src/tests/tmodule.pkg | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ThirdParty/toluapp/src/tests/tmodule.pkg b/ThirdParty/toluapp/src/tests/tmodule.pkg new file mode 100644 index 0000000..43d4306 --- /dev/null +++ b/ThirdParty/toluapp/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; +} |