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
bring XslCompiledTransform to MonoTouch
[mcs.git]
/
errors
/
cs0592-9.cs
blob
0e8e1d4aa8195b28cdd41c0b7d42da8b2fc224b6
1
// cs0592-9.cs: The attribute `SAttribute' is not valid on this declaration type. It is valid on `return' declarations only
2
// Line : 12
3
4
using
System
;
5
6
[
AttributeUsage
(
AttributeTargets
.
ReturnValue
)]
7
class
SAttribute
:
Attribute
{}
8
9
public class
C
10
{
11
int
Prop
{
12
[
param
:
S
]
13
set
{
14
}
15
}
16
}