[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1575.cs
blob2ebda82a2543b1a24bf239a79f7dbf2ce9acf93b
1 // CS1575: 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;