2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0594-2.cs
1 // cs0594.cs: Floating-point constant is outside the range of the type 'decimal'
2 // Line: 6
3
4 class X {
5         public static void Main() {
6                 double dbl = 1.0e99999;
7         }
8 }