mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
not-null instrumentation fixed for static inner classes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class NonStaticInnerClass {
|
||||
public NonStaticInnerClass() {
|
||||
new Inner("");
|
||||
}
|
||||
|
||||
public class Inner {
|
||||
public Inner(@NotNull String s) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user