18 lines
140 B
C#
Raw Normal View History

struct G<T>
{
public static G<T> s;
private G (int i)
{
}
}
struct S
{
private G<string> value;
public static void Main ()
{
}
}