"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0212.cs
blob94d6f8f26ae1adea469b6c89a67ef4cf07926aa5
1 // CS0212: You can only take the address of unfixed expression inside of a fixed statement initializer
2 // Line: 19
3 // Compiler options: -unsafe
5 using System;
7 class X
9 public int x;
10 public X ()
12 this.x = 4;
15 public unsafe static void Main ()
17 X x = new X ();
18 int *p = &x.x;