summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tnamespace.pkg
blob: 0b583663adc20faa911dd50385b410d7e1535758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

$#include "tnamespace.h"

namespace A {
 int a;
	namespace B {
  int b;
  namespace C {
   int c;
		}
	}
}