comparison tests/mini/nested7.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/nested7.d@d9d5d59873d8
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module nested7;
2 extern(C) int printf(char*, ...);
3
4 void main()
5 {
6 int i;
7 i = 52;
8 printf("i = %d\n", i);
9
10 void func()
11 {
12 i++;
13
14 void func2()
15 {
16 i++;
17
18 void func3()
19 {
20 i++;
21 }
22
23 func3();
24 }
25
26 func2();
27 }
28
29 func();
30
31 printf("i = %d\n", i);
32 assert(i == 55);
33 }