a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
213 B
C#
22 lines
213 B
C#
using System;
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{
|
|
new C<int> ().Test ();
|
|
}
|
|
}
|
|
|
|
class C<T>
|
|
{
|
|
public void Test ()
|
|
{
|
|
dynamic d = null;
|
|
|
|
int v;
|
|
int.TryParse (d, out v);
|
|
|
|
int.TryParse (d, out v);
|
|
}
|
|
} |