Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/afterBinaryExpr.kt
T
2015-10-07 15:50:23 +03:00

14 lines
160 B
Kotlin
Vendored

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