[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs3018.cs
blob9cb110f0387595438a20fc132f1318dd8231bc55
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
5 using System;
6 [assembly: CLSCompliant (true)]
8 [CLSCompliant (false)]
9 public class NotCompliant
11 [CLSCompliant (true)]
12 public class Compliant