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