summaryrefslogtreecommitdiff
path: root/mcs/tests/test-820.cs
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;
	}
}