e7f5594ffe
- add test for extension function receiver
15 lines
139 B
Kotlin
Vendored
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
|