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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0053.cs
blob
3389f8e3932b1c824d227ef688ee296e315be3e9
1
// CS0053: Inconsistent accessibility: property type `ErrorCS0053' is less accessible than property `Foo.Property'
2
// Line: 11
3
4
using
System
;
5
6
class
ErrorCS0053
{
7
public
ErrorCS0053
() {}
8
}
9
10
public class
Foo
{
11
public
ErrorCS0053 Property
{
12
get
{ return new ErrorCS0053 (); }
13
}
14
15
public static void
Main
() {
16
}
17
18
ErrorCS0053 error
;
19
}
20