blob: 275d4b7ae9b1f6b8049f68748bc64081ca25a61a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0657: `method' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `assembly, module'. All attributes in this section will be ignored
// Line : 7
// Compiler options: -warnaserror
using System;
[method: CLSCompliant (false)]
public class C
{
}
|