blob: 41ca880fdf6c32181d05e7500bc8d9c9ba296c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS0053: Inconsistent accessibility: property type `Blah[]' is less accessible than property `A.B'
// Line: 6
public class A {
public Blah [] B {
get { return null; }
}
static void Main () {}
}
class Blah {
}
|