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

test-810.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d82de016bafa5814e09bad025c689766dce54bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Compiler options: -r:test-810-lib.dll

public class C
{
	public IA Test (IC b)
	{
		IA a = b;
		return a;
	}
	
	public static void Main ()
	{
	}
}