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