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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0657-22.cs
blob
b2cb0eacfa13cc549bce26dee3be3fb08f25809e
1
// CS0657: `field' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event, method'
2
// Line: 8
3
4
using
System
;
5
6
abstract class
X
7
{
8
[
field
:
NonSerialized
]
9
public abstract event
EventHandler XEvent
;
10
}