[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0594.cs
1 // CS0594: Floating-point constant is outside the range of type `decimal'
2 // Line: 6
3
4 class X {
5         public static void Main() {
6                 decimal d = 12311111111111111111111111111111111111111111111111m;
7         }
8 }