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

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

class A : IA
{
	public void Method (IG<double[][]> arg)
	{
	}
	
	public static int Main ()
	{
		new A ().Method (null);
		return 0;
	}
}