Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/dataFlowInfoForArguments.fir.kt
T

8 lines
78 B
Kotlin
Vendored

package aaa
fun bar(a: Int, b: Int) {}
fun foo(a: Int?) {
bar(a!!, a)
}