15 lines
134 B
Kotlin
Vendored
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()
|
|
}
|