blob: f6deee781784dca0f89676e7164d410dfe214a26 [file] [log] [blame]
class CtorComment {
public String myA;
/**
* This constructor is especially useful
*/
public CtorComment() {
myA = "str";
}
}
class CtorComment2 {
/**
* This constructor is especially useful
*/
public CtorComment2() {}
}