blob: 5960a03803042f3df1cd3b919b2ca270693d01f1 [file] [log] [blame]
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;
}
}