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: daa1f39b7176f971e03d279ae565a05f85ccb06b (plain)
1
2
3
4
5
6
7
8
// cs0664.cs: Literal of type double cannot be implicity converted to Float, use F suffix
// Line: 6
class X {
	void A ()
	{
		float f = 2.0;
	}
}