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

10 lines
257 B
Kotlin
Vendored

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_SMARTCAST!>x<!>) else baz()
fun quuux() = bar(if (x == null) 0 else <!DEBUG_INFO_SMARTCAST!>x<!>)
}