mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
8 lines
165 B
Java
8 lines
165 B
Java
// "Add constructor parameter" "true"
|
|
class A {
|
|
private A field;
|
|
public A(int x, A field) {
|
|
//this.field = field;
|
|
this.field = field;
|
|
}
|
|
} |