Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / bug-333798.2.cs
1 public class Gen<T> {
2         public static Gen<T>[] newSelfArr () {
3                 return null;
4         }
5 }
6
7 public class main {
8         public static void Main () {
9                 Gen<int>.newSelfArr ();
10         }
11 }