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

cs0201.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5e3a00c04c52f5c90b02a45f33230e1162309e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// cs0201.cs: if a meaningless statement is encountered error cs0201 have to be thrown
//

using System;

public class X
{
	public static void Main ()
	{
		2 * 3;
	}
}