<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1922</ErrorName>
  <Examples>
    <string>// CS1922: A field or property `System.Type' cannot be initialized with a collection object initializer because type `System.Type' does not implement `System.Collections.IEnumerable' interface
// Line: 13

using System;
using System.Xml.Serialization;

namespace test
{
	public class Test
	{
		static void Main ()
		{
			XmlSerializer xs = new XmlSerializer (typeof (string), new Type () { typeof (bool) });
		}
	}
}

</string>
    <string>// CS1922: A field or property `Data.Value' cannot be initialized with a collection object initializer because type `int' does not implement `System.Collections.IEnumerable' interface
// Line: 16


using System;

class Data
{
	public int Value;
}

public class Test
{
	static void Main ()
	{
		var c = new Data { Value = { 0, 1, 2 } };
	}
}
</string>
  </Examples>
</ErrorDocumentation>