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
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0058.cs
blob
eccb598e0eabefd2e5aa3d69fd20390efc51ab34
1
// cs0058.cs: Inconsistent accessibility: return type `ErrorCS0058' is less accessible than delegate `Foo.Delegate'
2
// Line: 10
3
4
using
System
;
5
6
class
ErrorCS0058
{
7
public
ErrorCS0058
() {}
8
}
9
10
public class
Foo
{
11
public delegate
ErrorCS0058
Delegate
();
12
13
public static void
Main
() {
14
}
15
}
16