New test.
[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         static void Main () {}
10 }