2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3018-2.cs
blob1d8ea933ca290cc0ff90a5de2b3fa0d8afc38dde
1 // cs3018-2.cs: `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 {}