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

cs0121-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9decb7379969d5cdaa9190a2c38f0878c1484826 (plain)
1
2
3
4
5
6
7
8
// cs0121.cs: Ambiguous call when selecting function due to implicit casts
// Line: 7

class X {
	static void Add (float f1, float f2, float f3) {}
	static void Add (params decimal [] ds) {}
	public static void Main () { Add (1, 2, 3); }
}