cleol
[mcs.git] / errors / cs0214-10.cs
blobd666d219c18cdf3c602011e67d90f86121883683
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 12
3 // Compiler options: -unsafe
5 using System;
7 class X {
8 public unsafe int* A { set { } }
10 void Foo ()
12 A = null;
15 static void Main () {}