15 lines
204 B
C#
Raw Normal View History

// CS0255: Cannot use stackalloc in finally or catch
// Line: 12
// Compiler options: -unsafe
unsafe class X {
static void Main ()
{
try {
} catch {
char *ptr = stackalloc char [10];
}
}
}