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

public class Blah {

	public static int Main ()
	{
		const bool k = false;		
		float f = (float) k;
		
	}
}