[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs3002-10.cs
1 // CS3002: Return type of `I.Error()' is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror -warn:1
4
5 [assembly:System.CLSCompliant(true)]
6
7 public interface I 
8 {
9        ulong Error();
10 }