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-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0115-6.cs
blob
d4bc2b8ac92564c2f912f185e82d0d3584498ec8
1
// CS0115: `B.MyMissingSuperclassEvent' is marked as an override but no suitable event found to override
2
// Line: 10
3
4
using
System
;
5
6
class
A
{
7
}
8
9
class
B
:
A
{
10
public override event
EventHandler MyMissingSuperclassEvent
;
11
}