IDEA-73344: Writing unknown value to a nullable variable must reset it's nullability status to unknown, rather than nullable.

This commit is contained in:
Maxim Shafirov
2011-11-24 19:36:14 +04:00
parent 089f90fa02
commit 49d0c2f9de
2 changed files with 3 additions and 3 deletions
@@ -7,7 +7,7 @@ public class Npe {
o.hashCode(); // NPE
}
Object foo() {
@Nullable Object foo() {
return null;
}
}
}