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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0657-19.cs
blob
0fa81375dbeed4584ff91857c918dca3e8592e69
1
// cs0657-19.cs: `field' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event, method'
2
// Line : 7
3
4
using
System
;
5
6
interface
X
{
7
[
field
:
NonSerialized
]
8
event
EventHandler XEvent
;
9
}