Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-cls-02.cs
1 using System;
2 using System.Reflection;
3
4 [assembly: CLSCompliant (true)]
5
6 public class CLSClass {
7         [CLSCompliant(false)]
8         public CLSClass(ulong l) {}
9         internal CLSClass(uint i) {}
10             
11         [CLSCompliant(false)]
12         public ulong X_0 {
13             set {}
14             }
15             
16         [CLSCompliant(false)]
17         protected ulong this[ulong i] {
18             set {}
19         }
20         
21         [CLSCompliant(false)]
22         public ulong X_1;
23             
24         internal ulong X_2;
25
26         public static void Main() {
27         }
28 }
29 public class InnerTypeClasss {
30     public struct Struct {
31     }
32     
33     public Struct Method () {
34         return new Struct ();
35     }
36 }