Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1575.cs
1 // CS1575: A stackalloc expression requires [] after type
2 // Line: 9
3 // Compiler options: -unsafe
4
5 class E
6 {
7    public unsafe void Method (int i)
8    {
9        long* p = stackalloc long; 
10    }
11 }