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: bdfd58490eea2ddab077702eb5ffdd5b1bb0134e (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;
		
	}
}