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

cs0664.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a4022793c73a7e40301a0de60cfc96c0b2a00b8 (plain)
1
2
3
4
5
6
7
8
// cs0664.cs: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
// Line: 6
class X {
	void A ()
	{
		float f = 2.0;
	}
}