[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs3008-8.cs
1 // CS3008: Identifier `E2.__VALUE' is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 public enum E2 {
9         __VALUE
10 }