1 // cs3027.cs: `I' is not CLS-compliant because base interface `I2' is not CLS-compliant
3 // Compiler options: -warn:1 -warnaserror
6 [assembly
: CLSCompliant (true)]
12 [CLSCompliant (false)]
17 public interface I
: I1
, I2
23 static void Main () {}