<?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>CS0457</ErrorName>
  <Examples>
    <string>// cs0457: Ambiguous user defined conversions `A.implicit operator byte(A)' and `A.implicit operator sbyte(A)' when converting from 'A' to 'int'
// Line: 20

class A
{
	public static implicit operator ushort (A mask)
	{
		return 1;
	}

	public static implicit operator short (A mask)
	{
		return 2;
	}
}

class X
{
    static A a = null;
    static object o = -a;
}
</string>
    <string>// cs0457: Ambiguous user defined conversions `A.implicit operator byte(A)' and `A.implicit operator sbyte(A)' when converting from 'A' to 'int'
// Line: 20

class A
{
	public static implicit operator sbyte (A mask)
	{
		return 1;
	}

	public static implicit operator byte (A mask)
	{
		return 2;
	}
}

class X
{
    static A a = null;
    static object o = ~a;
}
</string>
  </Examples>
</ErrorDocumentation>