Browse Source

Add although we have just fixed it :-)

svn path=/trunk/mcs/; revision=1910
Ravi Pratap M 24 years ago
parent
commit
80b3679465
1 changed files with 24 additions and 0 deletions
  1. 24 0
      mcs/errors/bug16.cs

+ 24 - 0
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 !");
+	}	
+}
+
+