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

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

public enum E
{
	TestField = 3
}

public class Second
{
	public void TestFinal ()
	{
		TestClass.Foo (E.TestField);
	}
}