2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1575.cs
blob2b3e18fd53c2d631f666d9f8d9a63776072d34b5
1 // cs1575.cs: A stackalloc expression requires [] after type
2 // Line: 9
3 // Compiler options: -unsafe
5 class E
7 public unsafe void Method (int i)
9 long* p = stackalloc long;