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

7 lines
171 B
Kotlin
Vendored

package a
fun <T> foo(u: T, <!UNUSED_PARAMETER!>v<!>: T): T = u
fun test(s: String?) {
val <!UNUSED_VARIABLE!>r<!>: String = foo(s!!, <!DEBUG_INFO_SMARTCAST!>s<!>)
}