Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0122-13.cs
1 // CS0122: `Test.foo' is inaccessible due to its protection level
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 }