Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/dataFlowInfoForArguments.kt
T
2014-10-01 18:52:52 +04:00

8 lines
151 B
Kotlin
Vendored

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