<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1922</ErrorName>
  <Examples>
    <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>
    <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 `GCEventTypeMatcher' cannot be initialized with a collection object initializer because type `GCEventTypeMatcher' does not implement `System.Collections.IEnumerable' interface
// Line: 11

using System;

public enum GCEventType {
	NURSERY_START
}

public class GCEventTypeMatcher {
	private static GCEventTypeMatcher[] matcher = { new GCEventTypeMatcher () { NURSERY_START, s =&gt; TRUE } };
}
</string>
  </Examples>
</ErrorDocumentation>