repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0053-2.cs
blob
0813952257ec9027cd75aa826914d9045d523789
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
}