Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/errors/bug15.cs')
-rwxr-xr-xmcs/errors/bug15.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/errors/bug15.cs b/mcs/errors/bug15.cs
deleted file mode 100755
index d233407af32..00000000000
--- a/mcs/errors/bug15.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// fixed
-//
-using System;
-
-class X {
-
- void A ()
- {
- }
-
- static void Main ()
- {
- int loop = 0;
-
- goto a;
- b:
- loop++;
- a:
- Console.WriteLine ("Hello");
- for (;;){
- goto b;
- }
- }
-}