Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0214-4.cs
index e323bf258ccdec53cf12f5e84d743c61221e2e25..12e42e1235a53b67649d72f8c61d4b61f21de801 100644 (file)
@@ -1,4 +1,4 @@
-// cs0214: Pointer can only be used in unsafe context
+// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
 // Line: 8
 // Compiler options: -unsafe
 
@@ -6,5 +6,7 @@ class X {
         public void a ()
         {
             void *p;
-       }
+               }
+
+               static void Main () {}
 }