mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
15 lines
280 B
Java
15 lines
280 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>
|
|
}
|
|
} |