summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0215.cs
blob: 95d77a546b7e7b052406edb247395e170830b779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0215: 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) {}

}