2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3018-3.cs
blobaa0af491858452e19a75fbd1c314bb917d9c681b
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
5 using System;
6 [assembly: CLSCompliant (true)]
8 public partial class C1
10 [CLSCompliant (true)]
11 public interface I2 {}
14 [CLSCompliant (false)]
15 public partial class C1