<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0663</ErrorName>
  <Examples>
    <string>// CS0663: Overloaded method `WrongInterface.Test(ref int)' cannot differ on use of parameter modifiers only
// Line: 6

public interface WrongInterface {
        int Test(out int obj);
        int Test(ref int obj);
}
</string>
  </Examples>
</ErrorDocumentation>