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

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

class N
{
	public static void Foo ()
	{
	}
}

class X
{
	public static void Main ()
	{
		N.Foo ();
	}
}