Updated with review feedback.
[mono.git] / mcs / errors / cs0053-2.cs
1 // CS0053: Inconsistent accessibility: property type `Blah[]' is less accessible than property `A.B'
2 // Line: 6
3
4 public class A {
5
6         public Blah [] B {
7                 get { return null; }
8         }
9
10         static void Main () {}
11 }
12
13 class Blah {
14         
15 }