a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
181 B
C#
18 lines
181 B
C#
class A<X>
|
|
{
|
|
public const A<int> Value = B<int>.Value;
|
|
}
|
|
|
|
class B<T>
|
|
{
|
|
public const A<T> Value = default (A<T>);
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
new B<int> ();
|
|
}
|
|
}
|