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

8 lines
105 B
Kotlin
Vendored

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