Files
kotlin-fork/idea/idea-completion/testData/basic/common/extensions/WrongExplicitReceiver.kt
T

11 lines
139 B
Kotlin
Vendored

// FIR_COMPARISON
class Foo {
fun Int.bar() = this
}
fun main(args: Array<String>) {
val v = Foo()
v.<caret>
}
// ABSENT: bar