Files
kotlin-fork/idea/idea-completion/testData/basic/common/primitiveCompletion/implicitReceiverFromExtensionMethod.kt
T
Roman Golyshev e7f5594ffe Use more correct check for the constructor symbol
- add test for extension function receiver
2020-08-09 12:01:23 +03:00

15 lines
139 B
Kotlin
Vendored

class A {
fun aaa() {}
val aa = 10
}
fun A.aaaExt() {}
fun A.test() {
<caret>
}
// EXIST: aaa
// EXIST: aa
// EXIST: aaaExt