# HG changeset patch # User Aziz K?ksal # Date 1197842405 -3600 # Node ID d0ac6faeaf66a839d5f8edd6b3bae5b2b2f28a7d # Parent c8c3aec130f7f8142e4ce5cc6d808a77ff4e689d Fixed something in dil.Parser. diff -r c8c3aec130f7 -r d0ac6faeaf66 trunk/src/dil/Parser.d --- a/trunk/src/dil/Parser.d Sun Dec 16 22:45:23 2007 +0100 +++ b/trunk/src/dil/Parser.d Sun Dec 16 23:00:05 2007 +0100 @@ -393,8 +393,8 @@ switch (token.type) { case T.LBrace: + auto begin = token; nT(); - auto begin = token; auto decls = new Declarations; while (token.type != T.RBrace && token.type != T.EOF) decls ~= parseDeclarationDefinition();