New test.
[mono.git] / mcs / errors / cs0657-20.cs
1 // cs0657-20.cs: `return' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method'\r
2 // Line : 7\r
3 \r
4 using System;\r
5 \r
6 public class C\r
7 {\r
8         [return: CLSCompliant (false)]\r
9         ~C ()\r
10         {\r
11         }\r
12 }\r