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

cs0664-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0f0d114e9772a55709d1fbae732285ae9c4f1ca (plain)
1
2
3
4
5
6
7
8
9
// cs0664.cs: Literal of type double cannot be implicitly converted to type 'decimal'. Add suffix 'm' to create a literal of this type
// Line: 7

class X {
	void A ()
	{
		decimal d = 2.0;
	}
}