Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/dataFlowInfoForArguments.kt
T
Svetlana Isakova 2eadd5202d check argument types through complete phase
with right data flow info
2013-09-02 23:18:42 +04:00

8 lines
124 B
Kotlin

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