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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0657-9.cs
blob
e80b66a430dcf08b8bccdb5217012027afcd31ad
1
// cs0657-9.cs: `type' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `param'
2
// Line : 13
3
4
using
System
;
5
6
[
AttributeUsage
(
AttributeTargets
.
All
)]
7
public class
TestAttribute
:
Attribute
8
{
9
}
10
11
struct
S
12
{
13
void
method
(
14
[
type
:
Test
]
15
int
p
) {}
16
}