Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0657-8.cs
index c56ff11cb0d492905fb359057423054fc47c2bdc..2d6c227769185aa9560ff4401c76512b2120a1aa 100644 (file)
@@ -1,9 +1,11 @@
-// cs0657.cs : 'param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'method, return'
-// Line : 4
+// CS0657: `param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method, return'. All attributes in this section will be ignored
+// Line: 9
+// Compiler options: -warnaserror
+
+using System;
 
 struct S
 {
-
     [param: Obsolete]
     void method () {}
 }
\ No newline at end of file