summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1575.cs
blob: 2ebda82a2543b1a24bf239a79f7dbf2ce9acf93b (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1575: A stackalloc expression requires [] after type
// Line: 9
// Compiler options: -unsafe

class E
{
   public unsafe void Method (int i)
   {
       long* p = stackalloc long; 
   }
}