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

7 lines
83 B
Kotlin

fun Any?.foo() {}
fun test(a: Any?) {
if (a != null) {
a.foo()
}
}