2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0214-5.cs
bloba9260d2d00d9396d6bdd23e017de2092a4dbcace
1 // cs0214-5.cs: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 16
3 // Compiler options: -unsafe
5 using System;
7 public class Driver
9 public static unsafe byte* Frob
11 get { return (byte *) 0; }
14 public static void Main ()
16 IntPtr q = (IntPtr) Frob;