Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs3018-3.cs
1 // CS3018: `C1.I2' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `C1'
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6 [assembly: CLSCompliant (true)]
7
8 public partial class C1
9 {
10     [CLSCompliant (true)]
11     public interface I2 {}
12 }
13
14 [CLSCompliant (false)]
15 public partial class C1
16 {
17 }