comparison tests/parser/simple_missing_1.d @ 189:75d0544ddc45

Better error handling on unexpected EOF.
author Anders Johnsen <skabet@gmail.com>
date Fri, 25 Jul 2008 13:50:01 +0200
parents
children
comparison
equal deleted inserted replaced
188:b3e0729c8524 189:75d0544ddc45
1
2 int main(int x)
3 {
4 x = 5;
5
6 y = 6 * -x;
7 return x;
8 }
9
10 int y;