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

cs0216-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a280436d437fd76eeb2be597d4e7f795372445c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0216: Missmatch of operators (true/false)
// Line:  4
class X {
	public static bool operator true (X i)
	{
		return true;
	}

	static void Main ()
	{
	}
}