mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
8 lines
165 B
Java
8 lines
165 B
Java
// "Add constructor parameter" "true"
|
|
class A {
|
|
private final A field;
|
|
public A(int x, A field) {
|
|
this.field = field;<caret>
|
|
int g=0;
|
|
}
|
|
} |