a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
341 B
C#
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 } };
|
|
}
|
|
}
|