5095caee50
#KT-30513 Fixed #KT-17071 Fixed
10 lines
116 B
Plaintext
Vendored
10 lines
116 B
Plaintext
Vendored
class Foo(val bar: Bar)
|
|
|
|
class Bar {
|
|
operator fun invoke() {}
|
|
}
|
|
|
|
fun test(foo: Foo?) {
|
|
foo?.bar?.invoke()
|
|
}
|