2005-01-16 Daniel Morgan <danielmorgan@verizon.net>
[mono.git] / mcs / errors / cs3023.cs
1 // cs3023.cs: CLSCompliant attribute has no meaning when applied to return types. Try putting it on the method instead
2 // Line: 8
3
4 using System;
5 [assembly: CLSCompliant (true)]
6
7 public class Class {
8         [return:CLSCompliant(false)]
9         public ulong Test ()
10         {
11             return 4;
12         }
13 }