Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs3027.cs
1 // CS3027: `I' is not CLS-compliant because base interface `I2' is not CLS-compliant
2 // Line: 17
3 // Compiler options: -warn:1 -warnaserror
4
5 using System;
6 [assembly: CLSCompliant (true)]
7
8 public interface I1
9 {
10 }
11
12 [CLSCompliant (false)]
13 public interface I2
14 {
15 }
16
17 public interface I: I1, I2
18 {
19 }
20
21 public class Foo
22 {
23         static void Main () {}
24 }