diff trunk/src/dil/parser/Parser.d @ 671:f1325a4506de

Removed enum TID from dil.ast.Types. Renamed UndefinedType to IllegalType.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Thu, 17 Jan 2008 22:57:36 +0100
parents a1f8d8f2db38
children 64fec49651cf
line wrap: on
line diff
--- a/trunk/src/dil/parser/Parser.d	Thu Jan 17 22:28:04 2008 +0100
+++ b/trunk/src/dil/parser/Parser.d	Thu Jan 17 22:57:36 2008 +0100
@@ -3518,7 +3518,7 @@
     } // version(D2)
     default:
       error(MID.ExpectedButFound, "BasicType", token.srcText);
-      t = new UndefinedType();
+      t = new IllegalType();
       nT();
     }
     return set(t, begin);