Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0662.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f819b95abaf7945ed0fb0c7100a9ccf16bcbee25 (plain)
1
2
3
4
5
6
7
8
9
// cs0662.cs: Cannot specify only `Out' attribute on a ref parameter. Use both `In' and `Out' attributes or neither
// Line: 8

using System.Runtime.InteropServices;

class C
{
   void Test(int i1, [Out, Int] ref int i2) {}
}