2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3027.cs
blob83e318f1f2eb8c10662cf332dfe56add084d1ab0
1 // cs3027.cs: `I' is not CLS-compliant because base interface `I2' is not CLS-compliant
2 // Line: 17
3 // Compiler options: -warn:1 -warnaserror
5 using System;
6 [assembly: CLSCompliant (true)]
8 public interface I1
12 [CLSCompliant (false)]
13 public interface I2
17 public interface I: I1, I2
21 public class Foo
23 static void Main () {}