<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8188</ErrorName>
  <Examples>
    <string>// CS8188: An expression tree cannot not contain a throw expression
// Line: 11

using System;
using System.Linq.Expressions;

class C
{
	public static void Main ()
	{
		Expression&lt;Func&lt;object&gt;&gt; l = () =&gt; throw null;
	}
}</string>
  </Examples>
</ErrorDocumentation>