<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8201</ErrorName>
  <Examples>
    <string>// CS8201: Out variable and pattern variable declarations are not allowed within a query clause
// Line: 11

using System.Linq;

class Program
{
	public static void Main ()
	{
		var a = "abcdef";
		var res = from x in a from y in M (a, out var z) select x;
	}

	public static T M&lt;T&gt;(T x, out T z) =&gt; z = x;
}</string>
  </Examples>
</ErrorDocumentation>