4 lines
239 B
Kotlin
Vendored
4 lines
239 B
Kotlin
Vendored
fun test() {
|
|
val x = ClassWithExternalAnnotatedMembers()
|
|
x.methodWithNotNullParameter(<warning descr="[NULLABILITY_MISMATCH_BASED_ON_JAVA_ANNOTATIONS] Type mismatch: inferred type is Nothing? but Int was expected">null</warning>)
|
|
} |