blob: e30db827fa051374ce2ca1b0bb7fc4a0bfa8168c [file] [log] [blame]
public class A {
A(String s) {
}
A() {
this(newMethod());
}
private static String newMethod() {
return "a";
}
}