mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
15 lines
164 B
Java
15 lines
164 B
Java
// "Create Field 'field'" "true"
|
|
class A {
|
|
String field;
|
|
|
|
static class Foo {
|
|
private Object field<caret>;
|
|
|
|
Foo() {
|
|
field;
|
|
}
|
|
}
|
|
|
|
}
|
|
|