2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs3018.cs
1 // cs3018.cs: 'NotCompliant.Compliant' cannot be marked as CLS-Compliant because it is a member of non CLS-Compliant type 'NotCompliant'
2 // Line: 9
3
4 using System;
5 [assembly: CLSCompliant (true)]
6
7 [CLSCompliant (false)]
8 public class NotCompliant
9 {
10                 [CLSCompliant (true)]
11                 public class Compliant
12                 {
13                 }
14 }