Newer
Older
zweic / tests / 2 / errorRec2.txt.zwei
@glproj03 glproj03 on 24 Nov 2005 251 bytes added eyers testfiles
  1. //test error recovering after two missing paranthesis in an if statement
  2. class ErrorRec2 {
  3.  
  4. Null ident() {
  5. if x < 0 //here we miss two parantesis ( and )
  6. then_expression
  7. else
  8. else_expression //here we miss a ";"
  9. }
  10.  
  11. }
  12. hello