2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-2.cs
blobd3ffc2b6e014842c9c922a796283b7cf61acce5f
1 // cs0122-2.cs: `A.prop' is inaccessible due to its protection level
2 // Line: 19
3 // Compiler options: -t:library
5 class A
7 int i;
9 int prop
11 set { i = value; }
15 class B : A
17 void M ()
19 prop = 2;