not-null instrumentation fixed for static inner classes

This commit is contained in:
nik
2010-08-05 13:38:18 +04:00
parent b46c1f58a4
commit 6a8fa26b86
4 changed files with 72 additions and 38 deletions
@@ -0,0 +1,12 @@
import org.jetbrains.annotations.NotNull;
public class NonStaticInnerClass {
public NonStaticInnerClass() {
new Inner("");
}
public class Inner {
public Inner(@NotNull String s) {
}
}
}