1 // Compiler options: -unsafe
6 static unsafe int Test ()
9 uint* i
= stackalloc uint[int.MaxValue
];
14 } catch (OverflowException
) {
19 unsafe static void Test2 ()
30 unsafe static void Test2 (sbyte sb
, short s
, int i
, long l
, ulong ul
)
40 public static int Main ()
43 Test2 (1, 2, 3, 4, 5);
47 Console
.WriteLine ("OK");