a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
264 B
C#
25 lines
264 B
C#
using System;
|
|
|
|
class G<T>
|
|
{
|
|
public struct S
|
|
{
|
|
public string Test ()
|
|
{
|
|
return GetType ().ToString ();
|
|
}
|
|
}
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static int Main ()
|
|
{
|
|
string s = new G<int>.S ().Test ();
|
|
if (s != "G`1+S[System.Int32]")
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|