[aot] Remove some obsolete TODOs.
[mono.git] / mono / mini / aot-tests.cs
1 using System;
2 using System.Text;
3 using System.Reflection;
4 using System.Runtime.InteropServices;
5 using System.Runtime.CompilerServices;
6
7 /*
8  * Regression tests for the AOT/FULL-AOT code.
9  */
10
11 class Tests {
12
13         static int Main () {
14                 return TestDriver.RunTests (typeof (Tests));
15         }
16
17         public delegate void ArrayDelegate (int[,] arr);
18
19         static int test_0_array_delegate_full_aot () {
20                 ArrayDelegate d = delegate (int[,] arr) {
21                 };
22                 int[,] a = new int[5, 6];
23                 d.BeginInvoke (a, null, null);
24                 return 0;
25         }
26 }