Newer
Older
zweic / tests / 2 / errorRec1.txt.zwei
@glproj03 glproj03 on 24 Nov 2005 230 bytes added eyers testfiles
  1. //The compiler should see two errors:
  2. //the ";" after the true in the while condition and the missing of the ";" after the true after the loop
  3.  
  4. class Temp {
  5.  
  6. Int bla() {
  7. while (true;) {
  8. true;
  9. }
  10. true
  11. }
  12. }
  13. true