902b42ae1d
Co-authored-by: Roman Golyshev <roman.golyshev@jetbrains.com>
17 lines
212 B
Kotlin
Vendored
17 lines
212 B
Kotlin
Vendored
class A {
|
|
fun aa() {}
|
|
val aaa = 10
|
|
|
|
fun Int.extFun() {}
|
|
fun Int.extVal() {}
|
|
|
|
fun test() {
|
|
<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: aa
|
|
// EXIST: aaa
|
|
// EXIST: test
|
|
// ABSENT: extFun
|
|
// ABSENT: extVal |