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: 7a8797ee6801f67971fd5f3623e1f6155790d056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0121.cs: ambigous call when selecting function due to implicit casts
// 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);
	}
}