[xbuild] Make Engine.DefaultToolsVersion 2.0 .
[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'
2 // Line : 7
3
4 using System;
5
6 public class C
7 {
8         [return: CLSCompliant (false)]
9         ~C ()
10         {
11         }
12 }