Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / test-374.cs
1 internal class Test 
2 {
3         protected internal const int foo = 0;
4 }
5 internal class Rest
6 {
7         protected const int foo = Test.foo;
8
9         public static void Main () {}
10 }