update rx (mobile builds).
[mono-project.git] / mono / mini / aot-tests.cs
blob9c8e933b167b1313712e3b0b25a8c6992516625f
1 using System;
2 using System.Text;
3 using System.Reflection;
4 using System.Runtime.InteropServices;
5 using System.Runtime.CompilerServices;
7 /*
8 * Regression tests for the AOT/FULL-AOT code.
9 */
11 class Tests {
13 static int Main () {
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);
24 return 0;