Suppose there is Java library that's declared @NonNullApi, but some its methods actually may consume null parameter.
Is there way to ignore non-nullability requirement and pass null there from Kotlin?
UPD Need to clarify: method is declared as non-nullable by 3rd party library, there's no way to change its code. The goal is to break limitation from calling side.
Obvious way is to use Reflection, but maybe Kotlin provides just syntax for that?
@Nullable@NullableString code