bug15.cs 197 B

12345678910111213141516171819202122232425
  1. //
  2. // fixed
  3. //
  4. using System;
  5. class X {
  6. void A ()
  7. {
  8. }
  9. static void Main ()
  10. {
  11. int loop = 0;
  12. goto a;
  13. b:
  14. loop++;
  15. a:
  16. Console.WriteLine ("Hello");
  17. for (;;){
  18. goto b;
  19. }
  20. }
  21. }