238cc7c257
143 out of 767 tests (18.6%) are currently failing.
16 lines
289 B
Kotlin
Vendored
16 lines
289 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
import java.util.ArrayList
|
|
|
|
fun foo(): Any {
|
|
val a = ArrayList<String>()
|
|
return a.get(0)
|
|
}
|
|
|
|
fun bar(a: ArrayList<String>) {
|
|
}
|
|
|
|
// 0 checkExpressionValueIsNotNull
|
|
// 1 checkNotNullExpressionValue
|
|
// 0 checkParameterIsNotNull
|
|
// 1 checkNotNullParameter
|