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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0059.cs
blob
4afda7adf21773c6aa7152f3f9b715b9df21e7e9
1
// CS0059: Inconsistent accessibility: parameter type `ErrorCS0059' is less accessible than delegate `Foo.ErrorCS0059Delegate'
2
// Line: 10
3
4
using
System
;
5
6
class
ErrorCS0059
{
7
}
8
9
public class
Foo
{
10
public delegate void
ErrorCS0059Delegate
(
ErrorCS0059 e
);
11
12
public static void
Main
() {
13
}
14
}
15