* ILParser.jay: Same as below but with float64 ()
[mono.git] / mcs / errors / cs0255.cs
1 // cs0255.cs: Can not use stackalloc in finally or catch
2 // Line: 10
3 unsafe class X {
4
5         static void Main ()
6         {
7                 try {
8                 } catch {
9                         char *ptr = stackalloc char [10];
10                 }
11         }
12 }