Files
kotlin-fork/nj2k/testData/newJ2k/issues/kt-19348.java
T
2019-06-11 10:35:31 +03:00

26 lines
452 B
Java
Vendored

public class TestMutltipleCtorsWithJavadoc {
private String x;
private String y;
// ---
// Constructors
//
/**
* Javadoc for 1st ctor
* @param x
*/
public TestMutltipleCtorsWithJavadoc(String x) {
this.x = x;
}
/**
* Javadoc for 2nd ctor
* @param x
* @param y
*/
public TestMutltipleCtorsWithJavadoc(String x, String y) {
this(x);
this.y = y;
}
}