2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / tests / generic-static-methods.2.cs
blobd16005fb9bd62bb6de403be8d72aad1e7b2600b5
1 using System;
3 public class Gen<T> {
4 public static T [] method<S> () {
5 return new T [3];
9 public class main {
10 public static int Main () {
11 if (Gen<object>.method<string> ().GetType () != typeof (object []))
12 return 1;
13 return 0;