[Tests] Fix Mono.Data.Tds tests on iOS (#5501)
[mono.git] / mcs / errors / cs0214-4.cs
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 8
3 // Compiler options: -unsafe
4
5 class X {
6         public void a ()
7         {
8             void *p;
9                 }
10
11                 static void Main () {}
12 }