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

test-824.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30dd682f071df614c0d5e6198b5b80f90f83c249 (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
// Compiler options: -r:test-824-lib.dll
using System;

class Context : IZZZ
{
	public void Foo (IBBB command)
	{
	}

	public void Foo (IAAA query)
	{
		throw new System.NotImplementedException ();
	}
}

class Test : IAAA, IBBB
{
	public static void Main ()
	{
		Test cmd = new Test ();
		IZZZ context = new Context ();
		context.Foo (cmd);
	}
}