[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs3018-2.cs
blob135556e65d366182ce984dbe4da6eca070e6201d
1 // CS3018: `C1.I2' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `C1'
2 // Line: 12
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly: CLSCompliant (true)]
8 [CLSCompliant (false)]
9 public class C1
11 [CLSCompliant (true)]
12 public interface I2 {}