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

cs0215.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c875505e94814e2fd4e515429de9fcdbfc5418e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0215.cs : The return type of operator True or False must be bool
// Line : 11 

class Blah {

	public static void Main ()
	{

	}

	public static int operator true (Blah i) {}

}