[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0254.cs
1 // CS0254: The right hand side of a fixed statement assignment may not be a cast expression
2 // Line: 16
3 // Compiler options: -unsafe
4
5 class Box {
6     public int value;
7 }
8
9 unsafe struct Obsolete {
10 }
11
12 class MainClass {
13         unsafe public static void Main ()
14         {
15                 Box b = new Box ();
16                 fixed (long* p = (long*)&b.value)
17                 {
18                 }
19         }
20 }