<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0662</ErrorName>
  <Examples>
    <string>// 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) {}
}
</string>
  </Examples>
</ErrorDocumentation>