error messages review
[mono.git] / mcs / errors / cs3014.cs
1 // cs3014.cs: `I.Valid(bool)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 8
3
4 using System;
5
6 public interface I {
7         [CLSCompliant (true)]
8         void Valid (bool arg);
9 }