2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3018.cs
blob1f2ac2b578815ea466948c55b4992153c5da1555
1 // cs3018.cs: `NotCompliant.Compliant' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `NotCompliant'
2 // Line: 12
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly: CLSCompliant (true)]
8 [CLSCompliant (false)]
9 public class NotCompliant
11 [CLSCompliant (true)]
12 public class Compliant