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

test-820.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6822815a946ce7935ae0a8991a4bcf12e03eb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Compiler options: -main:C

using System;

namespace NS
{
	public class C
	{
		public static void Main ()
		{
			throw new NotImplementedException ();
		}
	}
}

public class C
{
	public static int Main (string[] a)
	{
		return 0;
	}
}