comparison tests/mini/nested6.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/nested6.d@d9d5d59873d8
children a34078905d01
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module nested6;
2 extern(C) int printf(char*, ...);
3
4 void main()
5 {
6 int i = 42;
7
8 printf("main() %d\n", i++);
9
10 class C
11 {
12 void func()
13 {
14 printf("C.func() %d\n", i++);
15
16 class C2
17 {
18 void func2()
19 {
20 printf("C2.func2() %d\n", i++);
21 }
22 }
23
24 {
25 scope c2 = new C2;
26 c2.func2();
27 }
28 }
29 }
30
31 scope c = new C;
32 c.func();
33 }