You've already forked linux-packaging-mono
18 lines
140 B
C#
18 lines
140 B
C#
![]() |
struct G<T>
|
||
|
{
|
||
|
public static G<T> s;
|
||
|
|
||
|
private G (int i)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct S
|
||
|
{
|
||
|
private G<string> value;
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|