15 lines
247 B
Java
Vendored
15 lines
247 B
Java
Vendored
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;
|
|
}
|
|
} |