(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0212.cs
blob32ed536a21c162f86ce9fa0f1bb6f60231f98c07
1 // cs0212: You can only take the address of an unfixed expression inside
2 // a fixed statement initializer.
3 // Line: 19
4 // Compiler options: -unsafe
6 using System;
8 class X
10 public int x;
11 public X ()
13 this.x = 4;
16 public unsafe static void Main ()
18 X x = new X ();
19 int *p = &x.x;