Switch to compiler-tester
[mono.git] / mcs / errors / cs0122-13.cs
1 // cs0122-13.cs: `Test.foo' is inaccessible due to its protection level\r
2 // Line: 10
3
4 internal class Test 
5 {
6         protected const int foo = 0;
7 }
8 internal class Rest
9 {
10         protected const int foo = Test.foo;
11
12         static void Main () {}
13 }