Newer
Older
zweic / tests / 2 / errorRec2.txt.zwei
@glproj03 glproj03 on 24 Nov 2005 251 bytes added eyers testfiles
//test error recovering after two missing paranthesis in an if statement
class ErrorRec2 {

	Null ident() {
	
		if x < 0 			//here we miss two parantesis ( and )
			then_expression
		else
			else_expression	//here we miss a ";"
	}

}
hello