mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 13:50:53 +07:00
additional checks for local classes & initializer components IJ-CR-2759 GitOrigin-RevId: 84402b253396ef60c33d3468bcc6fdc65c4e3176
12 lines
165 B
Java
12 lines
165 B
Java
class Test {
|
|
private final int <caret>myA;
|
|
|
|
Test() {
|
|
class Local {}
|
|
myA = new Local().hashCode();
|
|
}
|
|
|
|
void test() {
|
|
System.out.println(myA);
|
|
}
|
|
} |