2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3018-3.cs
blobd63fc33e51edb610dc4a88e52949ecffde4a525c
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