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

cs0656.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98ed42b0b10796746271b9ce3b29d31f316573b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0656: The compiler required member `decimal..ctor(int)' could not be found or is inaccessible
// Line: 9
// Compiler options: -nostdlib CS0656-corlib.cs

class C
{
	static void Main ()
	{
		decimal d = 12M;
	}
}