<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8075</ErrorName>
  <Examples>
    <string>// CS8075: An expression tree cannot contain a collection initializer with extension method
// Line: 12

using System;
using System.Collections.Generic;
using System.Linq.Expressions;

class Program
{
	static void Main()
	{
		Expression&lt;Func&lt;Stack&lt;int&gt;&gt;&gt; e = () =&gt; new Stack&lt;int&gt; { 42 };		
	}
}

static class X
{
	public static void Add&lt;T&gt;(this Stack&lt;T&gt; s, T value) =&gt; s.Push (value);
}</string>
  </Examples>
</ErrorDocumentation>