merge -r 58060:58217
[mono.git] / mcs / errors / cs0657-8.cs
1 // cs0657-8.cs: `param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method, return'
2 // Line : 4
3
4 struct S
5 {
6
7     [param: Obsolete]
8     void method () {}
9 }