2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0662.cs
blobf819b95abaf7945ed0fb0c7100a9ccf16bcbee25
1 // cs0662.cs: Cannot specify only `Out' attribute on a ref parameter. Use both `In' and `Out' attributes or neither
2 // Line: 8
4 using System.Runtime.InteropServices;
6 class C
8 void Test(int i1, [Out, Int] ref int i2) {}