summaryrefslogtreecommitdiff
path: root/mcs/tests/test-883.cs
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);
	}
}