Newer
Older
zweic / tests / 2 / errorRec1.txt.zwei
@glproj03 glproj03 on 24 Nov 2005 230 bytes added eyers testfiles
//The compiler should see two errors:
//the ";" after the true in the while condition and the missing of the ";" after the true after the loop

class Temp {

	Int bla() {
		while (true;) {
			true;
		}
		true
	}
}
true