[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs3018-2.cs
1 // CS3018: `C1.I2' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `C1'
2 // Line: 12
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6 [assembly: CLSCompliant (true)]
7
8 [CLSCompliant (false)]
9 public class C1
10 {
11     [CLSCompliant (true)]
12     public interface I2 {}
13 }