15 lines
204 B
C#
15 lines
204 B
C#
|
// 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];
|
||
|
}
|
||
|
}
|
||
|
}
|