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
Make csproj target work again
[mcs.git]
/
errors
/
cs0657-15.cs
blob
e9e1b0db2621ab379df6399e5bddcc09262e80ea
1
// cs0657-15.cs: `property' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event'
2
// Line : 8
3
4
using
System
;
5
6
class
C
7
{
8
[
property
:
Obsolete
]
9
event
ResolveEventHandler field
{
10
add
{}
11
remove
{}
12
}
13
}