[w32file] Remove dead code
[mono.git] / mcs / errors / cs3018.cs
1 // CS3018: `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
4
5 using System;
6 [assembly: CLSCompliant (true)]
7
8 [CLSCompliant (false)]
9 public class NotCompliant
10 {
11                 [CLSCompliant (true)]
12                 public class Compliant
13                 {
14                 }
15 }