2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0657-3.cs
1 // cs0657.cs : 'return' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'assembly, module'
2 // Line : 7
3
4 using System;
5
6 [method: CLSCompliant (false)]
7
8
9 public class C
10 {
11 }