[mcs] Allow properties and indexers of by-ref values to be set without setter
[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 }