summaryrefslogtreecommitdiff
path: root/tests/parser/namespaces.vala
blob: aae68838ff582fd1959981d2922c34a26ff82d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using Foo.Sub;

public class GlobalTestClass {
	public GlobalTestClass() {
	}
}

namespace Maman {
	static void run () {
		stdout.printf ("Namespace Test\n");

		Bar.run ();

		new GlobalTestClass();

		var obj = new ClassInNestedNamespace ();
	}

	class Bar : Object {
		public static void run () {
			stdout.printf ("Class in Namespace Test\n");
		}
	}
}

public class Foo.Sub.ClassInNestedNamespace {
}

void main () {
	Maman.run ();
}