<?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>CS0695</ErrorName>
  <Examples>
    <string>// CS0695: `A&lt;X,Y,Z&gt;' cannot implement both `I&lt;X&gt;' and `I&lt;A&lt;Y,Y,Z&gt;&gt;' because they may unify for some type parameter substitutions
// Line: 7

interface I&lt;X&gt;
{ }

class A&lt;X,Y,Z&gt; : I&lt;X&gt;, I&lt;A&lt;Y,Y,Z&gt;&gt;
{ }
</string>
    <string>// CS0695: `C&lt;X,Y&gt;' cannot implement both `I&lt;X&gt;' and `I&lt;K&lt;Y&gt;&gt;' because they may unify for some type parameter substitutions
// Line: 10

interface I&lt;X&gt;
{ }

interface K&lt;X&gt;
{ }

class C&lt;X,Y&gt; : I&lt;X&gt;, I&lt;K&lt;Y&gt;&gt;
{ }
</string>
    <string>// CS0695: `C&lt;X,Y&gt;' cannot implement both `I&lt;K&lt;Y&gt;&gt;' and `I&lt;X&gt;' because they may unify for some type parameter substitutions
// Line: 10

interface I&lt;X&gt;
{ }

interface K&lt;X&gt;
{ }

class C&lt;X,Y&gt; : I&lt;K&lt;Y&gt;&gt;, I&lt;X&gt;
{ }
</string>
    <string>// CS0695: `A&lt;X,Y&gt;' cannot implement both `I&lt;X&gt;' and `I&lt;Y&gt;' because they may unify for some type parameter substitutions
// Line: 7

interface I&lt;X&gt;
{ }

class A&lt;X,Y&gt; : I&lt;X&gt;, I&lt;Y&gt;
{ }
</string>
  </Examples>
</ErrorDocumentation>