Fix warnings.
[mono.git] / mcs / errors / cs0662.cs
1 // cs0662.cs: 'C.Test(int, ref int)' 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, In2] ref int i2) {}
9 }