[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs3021.cs
1 // CS3021: `I' does not need a CLSCompliant attribute because the assembly is not marked as CLS-compliant
2 // Line: 9
3 // Compiler options: -warn:2 -warnaserror
4
5 using System;
6
7 [CLSCompliant (false)]
8 public interface I
9 {
10 }