2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs3001-3.cs
1 // cs3001.cs: Argument type 'ulong' is not CLS-compliant
2 // Line: 8
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public class CLSClass {
8         public long this [ulong index] {
9                 get {
10                         return 2;
11                 }
12         }
13 }