Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/afterBinaryExpr.kt
T
2014-02-12 14:47:10 +04:00

14 lines
153 B
Kotlin

package o
class A {
fun foo(b: B) = b
}
class B {
fun bar() {}
}
fun test(a: A, b: B?) {
a foo b!!
<!DEBUG_INFO_AUTOCAST!>b<!>.bar()
}