diff tests/mini/nested14.d @ 452:30ef3c7bddca

Fixed problems with nested 'this'. Fixes #39 . Fixed problem with debug info order of intrinsic calls (func.start after declare).
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 02 Aug 2008 00:50:39 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/nested14.d	Sat Aug 02 00:50:39 2008 +0200
@@ -0,0 +1,27 @@
+module mini.nested14;
+
+extern(C) int printf(char*, ...);
+
+class C
+{
+  void foo()
+  {
+    void bar()
+    {
+       car();
+    }
+
+    bar();
+  }
+
+  void car()
+  {
+    printf("great\n");
+  }
+}
+
+void main()
+{
+  scope c = new C;
+  c.foo();
+}