* support-test-*.cs: Rename from test-*-p2.cs.
[mono.git] / mcs / errors / cs0657-10.cs
1 // cs0657-10.cs: `param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `field'
2 // Line : 6
3
4 struct S
5 {
6     [param: Obsolete]
7     int field;
8 }