12 lines
164 B
C#
12 lines
164 B
C#
public class Gen<T> {
|
|
public static Gen<T>[] newSelfArr () {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public class main {
|
|
public static void Main () {
|
|
Gen<int>.newSelfArr ();
|
|
}
|
|
}
|