Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dtest-059.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b57b8d29f855b667235e973d27717166cef1d3aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
	}
}