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/bug16.cs')
-rw-r--r--mcs/errors/bug16.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/errors/bug16.cs b/mcs/errors/bug16.cs
deleted file mode 100644
index 4b8503cf127..00000000000
--- a/mcs/errors/bug16.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// Fixed
-//
-
-using System;
-
-public class Blah {
-
- public static void Main ()
- {
- ushort i;
- sbyte j;
-
- i = 10;
- j = 20;
-
- Console.WriteLine (i);
- Console.WriteLine (j);
-
- Console.WriteLine ("Hello there !");
- }
-}
-
-