cfad47cfa3/t3compiler/tads3/test/data/expr_err.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
/*
2
 *   Expression Error Tests 
3
 */
4
5
6
'missing right paren';
7
x = (3 + 4;
8
9
'missing left paren';
10
x = 3 + 4);
11
x = lst[3 + 4)];
12
13
'missing operand';
14
x = 3 + ;
15