2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0053-2.cs
blob0813952257ec9027cd75aa826914d9045d523789
1 // cs0053: Inconsistent accessibility: property type `Blah[]' is less accessible than property `A.B'
2 // Line: 6
4 public class A {
6 public Blah [] B {
7 get { return null; }
10 static void Main () {}
13 class Blah {