[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0656.cs
1 // CS0656: The compiler required member `decimal..ctor(int)' could not be found or is inaccessible
2 // Line: 9
3 // Compiler options: -nostdlib CS0656-corlib.cs
4
5 class C
6 {
7         static void Main ()
8         {
9                 decimal d = 12M;
10         }
11 }