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

test-946.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8841f1b82930c76eec1a53a79ae1f91a4a792091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

class X
{
	public static void Main ()
	{

	}

	int ImportScope (int scope)
	{
		switch (scope) {
		case 200:
			throw new NotImplementedException ();
		}

		throw new NotSupportedException ();
	}	
}