* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs3014-6.cs
1 // cs3014-6.cs: `C.field' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 8
3
4 using System;
5 [assembly:CLSCompliant (false)]
6
7 public class C {
8         [CLSCompliant (true)]
9         public long field;
10 }