summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tmodule.pkg
blob: 43d4306399e736d762203e0c3cd022a25dd3e2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

$#include "tmodule.h"

module A {
 extern int a;
	module B {
  extern int b;
  module C {
   extern int c;
		}
	}
}

module A {
 extern int d;
}