Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

19 lines
341 B
C#

// 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 } };
}
}