* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs3002-6.cs
1 // cs3002-6.cs: Return type of `I.Error()' is not CLS-compliant
2 // Line: 10
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 [CLSCompliant(false)]
8 public interface I {
9         [CLSCompliant(true)]
10         ulong[] Error();
11 }