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-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0657-11.cs
blob
0afd0322c5f7d1c54f3ab67f38497c33586be894
1
// cs0657-11.cs: `param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method, return'
2
// Line: 14
3
4
using
System
;
5
6
[
AttributeUsage
(
AttributeTargets
.
All
)]
7
public class
TestAttribute
:
Attribute
8
{
9
}
10
11
class
C
12
{
13
int
Prop
{
14
[
param
:
Test
]
15
get
{
16
return
1
;
17
}
18
}
19
}