a3da1ea1a0
- This way it is easier to get the correct results
18 lines
227 B
Kotlin
Vendored
18 lines
227 B
Kotlin
Vendored
class A {
|
|
fun aa() {}
|
|
val aaa = 10
|
|
|
|
inner class AA {
|
|
fun bb() {}
|
|
val bbb = 20
|
|
|
|
fun test() {
|
|
this.<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
// ABSENT: aa
|
|
// ABSENT: aaa
|
|
// EXIST: bb
|
|
// EXIST: bbb |