[CI] ignore appdomain-unload-asmload.exe on interp and full-aot
[mono.git] / mono / tests / array2.cs
1 using System;
2
3 namespace Test {
4         public class Test {
5                 public static int Main () {
6
7                         Char[,] c2 = new Char[1,1];
8                         Console.WriteLine (c2);
9
10                         return 0;
11                 }
12         }
13 }