repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs0053-2.cs
blob
41ca880fdf6c32181d05e7500bc8d9c9ba296c5e
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
}