[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0662.cs
1 // CS0662: Cannot specify only `Out' attribute on a ref parameter. Use both `In' and `Out' attributes or neither
2 // Line: 8
3
4 using System.Runtime.InteropServices;
5
6 class C
7 {
8    void Test(int i1, [Out, Int] ref int i2) {}
9 }