[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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 }