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

cs0121.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db38d1c887378bb2fe023f0473a169505b6772cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0121.cs: The call is ambiguous between the following methods or properties: `X.a(int, double)' and `X.a(double, int)'
// Line: 15

class X {
	static void a (int i, double d)
	{
	}

	static void a (double d, int i)
	{
	}

	public static void Main ()
	{
		a (0, 0);
	}
}