2002-06-25 Dick Porter <dick@ximian.com>
[mono.git] / mcs / errors / bug16.cs
1 //
2 // Fixed
3 //
4
5 using System;
6
7 public class Blah {
8         
9         public static void Main ()
10         {
11                 ushort i;
12                 sbyte  j;
13                 
14                 i = 10;
15                 j = 20;
16
17                 Console.WriteLine (i);
18                 Console.WriteLine (j);
19                 
20                 Console.WriteLine ("Hello there !");
21         }       
22 }
23
24