Good to know — in various projects in the middle of being transformed into Kotlin, we have Java code that interoperates with Kotlin, and we don’t seem to be getting the nullability inspections in Java that one might get from calling Java with
@Nullable
. Is that expected, or should we perhaps try to package that up into a self contained repro?
Resurrecting this ancient thread -- followed up with another team and they were able to repro at least one of the issues they saw, which was around Guice. On a nullable
?
type, it's fine to inject null, but Guice will barf unless you annotate with
@Nullable
that's available at runtime. However, the emitted annotations have