[interp] disable some tests that fail on CI only
[mono.git] / mono / tests / generic-array-type.2.cs
1 using System;
2
3 public class Gen<T> {
4         public Type arrayType () {
5                 return typeof (T []);
6         }
7 }
8
9 public class main {
10         public static int Main () {
11                 Gen<string> gs = new Gen<string> ();
12
13                 if (gs.arrayType () != typeof (string []))
14                         return 1;
15                 return 0;
16         }
17 }