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

cs0594.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d7a16e83539976fc848a0d42194090445e6a37a (plain)
1
2
3
4
5
6
7
8
// cs0594.cs: Floating-point constant is outside the range of type `decimal'
// Line: 6

class X {
	public static void Main() {
		decimal d = 12311111111111111111111111111111111111111111111111m;
	}
}