2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-13.cs
blobed6f9708dce3401d52ea60e232cede5c192e168a
1 // cs0122-13.cs: `Test.foo' is inaccessible due to its protection level
2 // Line: 10
4 internal class Test
6 protected const int foo = 0;
8 internal class Rest
10 protected const int foo = Test.foo;
12 static void Main () {}