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

cs0029.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5394a0ec035216ce0b6c605074f4d3db2e61bb22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0029.cs: Cannot implicitly convert type `X' to `bool'
// Line : 11

class X {
}

class T {
	static void Main ()
	{
		X x = new X ();
		if (x){
		}
	}
}