* support-test-*.cs: Rename from test-*-p2.cs.
[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 }