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: 74a2ff720a4b7d388935a40e4e713608a701b642 (plain)
1
2
3
4
5
6
7
8
9
// cs0664-2.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;
	}
}