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

10 lines
255 B
Kotlin

fun bar(x: Int) = x + 1
fun foo() {
val x: Int? = null
fun baz() = bar(<!TYPE_MISMATCH!>x<!>)
fun quux() = if (x != null) bar(<!DEBUG_INFO_AUTOCAST!>x<!>) else baz()
fun quuux() = bar(if (x == null) 0 else <!DEBUG_INFO_AUTOCAST!>x<!>)
}