[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0677-5.cs
1 // CS0677: `X.e': A volatile field cannot be of the type `E'
2 // Line: 10
3
4 enum E : long
5 {
6 }
7
8 class X
9 {
10         volatile E e;
11 }