mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
+ warn if fields should be used in class initializers which would cause NPE; test conflicts in tests GitOrigin-RevId: a3db679f87d68924c94a3a9f082cafd527eebd5b
9 lines
84 B
Java
9 lines
84 B
Java
class Outer {
|
|
void bar() {}
|
|
class In<caret>ner {
|
|
{
|
|
bar();
|
|
}
|
|
|
|
}
|
|
} |