Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bug16.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b8503cf12797eb6122239a324f8a1a2f6a3b72f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 !");
	}	
}