Files
kotlin-fork/idea/idea-completion/testData/basic/common/primitiveCompletion/classFieldsAndFunctions.kt
T
Ilya Kirillov 902b42ae1d FIR IDE: fix typo in completion testdata
Co-authored-by: Roman Golyshev <roman.golyshev@jetbrains.com>
2020-08-09 12:01:59 +03:00

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