Blame testing/066_property_initializer.cs

Packit 1c1d7e
// objective: C# property initializer
Packit 1c1d7e
// check: class_class1.xml
Packit 1c1d7e
class Class1
Packit 1c1d7e
{
Packit 1c1d7e
  public int Property1 { get; } = 1;
Packit 1c1d7e
  public string Property2 { get; set; }
Packit 1c1d7e
}