[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0029-38.cs
1 // CS0029: Cannot implicitly convert type `int' to `(long, bool)'
2 // Line: 8
3
4 class C
5 {
6         static void Test ()
7         {
8                 System.ValueTuple<long, bool> arg = 1;
9         }
10 }