summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0030-8.cs
blob: ed387372fee682a95451faee389cba45ad3f22de (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0030: Cannot convert type `bool' to `int'
// Line: 9

class X
{
	static void Main ()
	{
		const bool b = true;
		int a = (int)(b ? true : false);
	}
}