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

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

class X {
	public static void Main() {
		float f = 1.0e999999f;
	}
}