Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/afterBinaryExpr.fir.kt
T
2020-04-21 09:48:03 +03:00

15 lines
134 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!!
b.bar()
}