2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / errors / cs0594-3.cs
1 //
2 // cs0594: Floating-point constant is outside the range for type 'decimal|double|float'
3
4 class X {
5         public static void Main() {
6                 float f = 1.0e999999f;
7         }
8 }