package test; public class TestMutltipleCtors { private int x; private int y; public TestMutltipleCtors(int x) { this.x = x; } public TestMutltipleCtors(int x, int y) { this.x = x; this.y = y; } }