diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/nested21.d	Mon Apr 13 12:19:18 2009 +0200
@@ -0,0 +1,16 @@
+module nested21;
+
+extern(C) int printf(char*, ...);
+
+void main() {
+    int i = 42;
+    int foo() { return i; }
+    int bar() {
+        int j = 47;
+        int baz() { return j; }
+        return foo() + baz();
+    }
+    auto result = bar();
+    printf("%d\n", result);
+    assert(result == 42 + 47);
+}