blob: cd0507ff3c9a8812d597676183a85296a1ee60d2 [file] [log] [blame]
// "Add constructor parameter" "true"
public enum La {
;
private String s;
private La(String s) {
this.s = s;
}
private La(int a, String s);
}