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

dtest-009.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fcb4fcddcad9b91d97777d1ca5be67904403846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
partial class B
{
	static partial void Test (int a);

	static partial void Test (int x)
	{
	}

	public static int Main ()
	{
		Test (a: 5);

		dynamic d = -1;
		Test (a: d);

		return 0;
	}
}