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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2002-01-08 16:15:33 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2002-01-08 16:15:33 +0300
commit80b3679465237e5ed7bc85d4fe003d657e28e52c (patch)
tree17defd8bc53934e7a75a6580869291ba0be1f8dd /mcs/errors/bug16.cs
parentcc4284b6cf2ae593bb7b5a06d0d97166f5543b14 (diff)
Add although we have just fixed it :-)
svn path=/trunk/mcs/; revision=1910
Diffstat (limited to 'mcs/errors/bug16.cs')
-rw-r--r--mcs/errors/bug16.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mcs/errors/bug16.cs b/mcs/errors/bug16.cs
new file mode 100644
index 00000000000..4b8503cf127
--- /dev/null
+++ b/mcs/errors/bug16.cs
@@ -0,0 +1,24 @@
+//
+// 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 !");
+ }
+}
+
+