<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS7083</ErrorName>
  <Examples>
    <string>// CS7083: Expression must be implicitly convertible to Boolean or its type `C' must define operator `true'
// Line: 8

class C
{
	dynamic M (dynamic d)
	{
		return this || d;
	}
}</string>
    <string>// CS7083: Expression must be implicitly convertible to Boolean or its type `C' must define operator `false'
// Line: 8

class C
{
	dynamic M (dynamic d)
	{
		return this &amp;&amp; d;
	}
}</string>
  </Examples>
</ErrorDocumentation>