TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs3027.cs
blobaefbdf057bacf936d535cdad2289a0ca1c991963
1 // CS3027: `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 () {}