blob: 706657fe65542bece58f270291c74bd87e3c72c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS1644: Feature `object initializers' cannot be used because it is not part of the C# 2.0 language specification
// Line: 14
// Compiler options: -langversion:ISO-2
class Data
{
public int Value;
}
class A
{
void Foo ()
{
new Data () { Value = 3 };
}
}
|