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

test-named-10.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6434c836612c7989e6fdb519b37760815ff4c7e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

internal class Program
{
	public static void Main ()
	{
		Method (1, 2, paramNamed: 3);
	}
	
	static void Method (int p1, int paramNamed, int p2)
	{
		throw new ApplicationException ();
	}
	
	static void Method (int p1, int p2, object paramNamed)
	{
	}
}