Files
kotlin-fork/idea/idea-completion/testData/basic/common/primitiveCompletion/classFieldsAndFunctionsFromInnerClass.kt
T
Roman Golyshev ffb907150a Use information about receivers in completion
- Found few problems during resolving a single functon; disabled
assertions and marked them with TODO
- Add simple completion tests to simplify development
2020-08-09 12:01:00 +03:00

18 lines
220 B
Kotlin
Vendored

class A {
fun aa() {}
val aaa = 10
inner class AA {
fun bb() {}
val bbb = 20
fun test() {
<caret>
}
}
}
// EXIST: aa
// EXIST: aaa
// EXIST: bb
// EXIST: bbb