Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0214-12.cs
blobef495c13da6edc85420d26165ebae0b7e5fca3b6
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 13
3 // Compiler options: -unsafe
5 class C
7 public static unsafe void Write (params int*[] args)
11 public static void Main ()
13 Write ();