Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/dataFlowInfoForArguments.kt
T
2013-12-11 19:53:50 +04:00

8 lines
150 B
Kotlin

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