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

cs1534.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13f2b79b26b846dce9344f89e12175e558ae2406 (plain)
1
2
3
4
5
6
7
8
9
10
// cs1534.cs: Overloaded binary operator `*' takes two parameters
// Line: 6

class C
{
	public static C operator * (C a, C b, C d)
	{
		return null;
	}
}