**** Merged from MCS ****
[mono-project.git] / mcs / errors / bug16.cs
blob4b8503cf12797eb6122239a324f8a1a2f6a3b72f
1 //
2 // Fixed
3 //
5 using System;
7 public class Blah {
9 public static void Main ()
11 ushort i;
12 sbyte j;
14 i = 10;
15 j = 20;
17 Console.WriteLine (i);
18 Console.WriteLine (j);
20 Console.WriteLine ("Hello there !");