Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-883.cs
1 // Compiler options: -r:test-883-lib.dll -t:library
2
3 public enum E
4 {
5         TestField = 3
6 }
7
8 public class Second
9 {
10         public void TestFinal ()
11         {
12                 TestClass.Foo (E.TestField);
13         }
14 }