Files
kotlin-fork/idea/testData/completion/basic/common/extensions/WrongExplicitReceiver.kt
T
2014-09-25 17:10:23 +04:00

10 lines
121 B
Kotlin

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