comparison tests/mini/nested21.d @ 1213:9430d4959ab4

Fix a bug in nested context code that occured when calling a function nested in the outermost scope with a context frame from a function using a more nested context frame.
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 13 Apr 2009 12:19:18 +0200
parents
children
comparison
equal deleted inserted replaced
1212:df2227fdc860 1213:9430d4959ab4
1 module nested21;
2
3 extern(C) int printf(char*, ...);
4
5 void main() {
6 int i = 42;
7 int foo() { return i; }
8 int bar() {
9 int j = 47;
10 int baz() { return j; }
11 return foo() + baz();
12 }
13 auto result = bar();
14 printf("%d\n", result);
15 assert(result == 42 + 47);
16 }