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