mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
We could devise something like ((Runnable)() -> {...}).run() but this kind of code looks too ugly.
Fixes IDEA-252688 Assertion error when applying fix to assert not null in enums
GitOrigin-RevId: 6f2122acb60cfcb074cc47e6bc599626fe5547fd
6 lines
121 B
Java
6 lines
121 B
Java
// "Assert 'field != null'" "false"
|
|
enum A {
|
|
I(field.<caret>hashCode());
|
|
private static Object field;
|
|
A(int i) {}
|
|
} |