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

cs0030.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7226eb2855c57233fd244d0b45035c1c3d5e4f2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0030.cs : Cannot convert type 'Blah' to 'float'
// Line : 12

public class Blah {

	public static int Main ()
	{
		Blah k;
		
		k = new Blah ();
		
		float f = (float) k;
		
	}
}