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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs7025.cs
blob
59eca472d26fc8cbd8a483e513013af71fa2ecce
1
// CS7025: Inconsistent accessibility: event type `System.Action<I>' is less accessible than event `C.E'
2
// Line: 8
3
4
using
System
;
5
6
public class
C
7
{
8
public event
Action
<
I
>
E
;
9
}
10
11
interface
I
12
{
13
}