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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0074.cs
blob
bdac40a50cb24c6e43137aa1863cf0f2f3cda454
1
// cs0074.cs: `ErrorCS0074.OnFoo': abstract event cannot have an initializer
2
// Line: 8
3
4
using
System
;
5
6
abstract class
ErrorCS0074
{
7
public delegate void
Handler
();
8
public abstract event
Handler OnFoo
=
null
;
9
public static void
Main
() {
10
}
11
}
12