//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