Files
kotlin-fork/idea/testData/inspectionsLocal/explicitThis/multipleReceiversExtension.kt.after
T

11 lines
123 B
Plaintext
Vendored

// WITH_RUNTIME
class Foo {
fun test() {
"".apply {
<caret>s()
}
}
}
fun Foo.s() = ""