2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0594.cs
1 // cs0594.cs: Floating-point constant is outside the range of the type 'double'
2 // Line: 6
3
4 class X {
5         public static void Main() {
6                 decimal d = 12311111111111111111111111111111111111111111111111m;
7         }
8 }