summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0594-2.cs
blob: be2a172dea084fd387e09aaecac2a75a21428759 (plain)
1
2
3
4
5
6
7
8
// CS0594: Floating-point constant is outside the range of type `double'
// Line: 6

class X {
	public static void Main() {
		double dbl = 1.0e99999;
	}
}