diff tests/parser/for_1.d @ 149:393a1f47a6d2

For loops in AST and sema. Should have correct scope and such now.
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 21:00:20 +0200
parents 060b6eb16db9
children
line wrap: on
line diff
--- a/tests/parser/for_1.d	Mon Jul 21 20:28:11 2008 +0200
+++ b/tests/parser/for_1.d	Mon Jul 21 21:00:20 2008 +0200
@@ -1,8 +1,10 @@
 
 int main()
 {
+    int x = 0;
     for(int i = 0; i < 5; i = i + 1)
     {
+        x = x + i;
     }
-    return 0;
+    return x;
 }