2efbc6e914
#KT-27550 Fixed
12 lines
134 B
Plaintext
Vendored
12 lines
134 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
open class Foo
|
|
|
|
class SubFoo : Foo()
|
|
|
|
val SubFoo.bar: String get() = ""
|
|
|
|
fun SubFoo.func() = Foo().apply {
|
|
bar
|
|
}
|