<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1958</ErrorName>
  <Examples>
    <string>// CS1958: Object and collection initializers cannot be used to instantiate a delegate 
// Line: 9
using System;

class Test
{
	public static void Main ()
	{
		var a = new Action (delegate { }) {
		};
	}
}
</string>
  </Examples>
</ErrorDocumentation>