diff trunk/src/Parser.d @ 128:e02b87281b4e

- Static asserts have to end with a semicolon.
author aziz
date Mon, 09 Jul 2007 22:03:05 +0000
parents cb9a97ebb570
children a9244d409652
line wrap: on
line diff
--- a/trunk/src/Parser.d	Mon Jul 09 22:02:01 2007 +0000
+++ b/trunk/src/Parser.d	Mon Jul 09 22:03:05 2007 +0000
@@ -766,6 +766,7 @@
     }
 
     require(T.RParen);
+    require(T.Semicolon);
 
     return new StaticAssertDeclaration(condition, message);
   }