3 using System
.Reflection
;
4 using System
.Runtime
.InteropServices
;
5 using System
.Runtime
.CompilerServices
;
8 * Regression tests for the AOT/FULL-AOT code.
14 return TestDriver
.RunTests (typeof (Tests
));
17 public delegate void ArrayDelegate (int[,] arr
);
19 static int test_0_array_delegate_full_aot () {
20 ArrayDelegate d
= delegate (int[,] arr
) {
22 int[,] a
= new int[5, 6];
23 d
.BeginInvoke (a
, null, null);