mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
15 lines
279 B
Java
15 lines
279 B
Java
// "Add constructor parameter" "true"
|
|
class A {
|
|
private A field;
|
|
public A(int x, A field) {
|
|
this.field = field;
|
|
int g=0;
|
|
}
|
|
A(A field) {
|
|
this("", field);
|
|
}
|
|
A(String s, A field) {
|
|
//here
|
|
this.field = field;<caret>
|
|
}
|
|
} |