f2accb7b9e
#KT-16067 Fixed
5 lines
88 B
Plaintext
Vendored
5 lines
88 B
Plaintext
Vendored
class Foo {
|
|
fun Foo.bar(): Int = 1
|
|
}
|
|
|
|
fun Foo.test(foo: Foo?): Int = foo?.bar() ?: 0 |