[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0214-7.cs
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 6
3 // Compiler options: -unsafe
4
5 class Test
6 {
7         public void Main ()
8         {
9                 byte* arr = stackalloc byte [4];
10         }
11 }
12