class FieldInitExample { int x = 5; int y; public FieldInitExample() : this(5) { } public FieldInitExample(int y) { this.y = y; } }