Files
kotlin-fork/idea/testData/inspectionsLocal/explicitThis/differentReceiverInstanceExtension4.kt.after
T
2019-06-24 09:34:08 +03:00

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
}