Files
kotlin-fork/idea/idea-completion/testData/basic/multifile/HiddenDeclarations/HiddenDeclarations.kt
T

17 lines
282 B
Kotlin
Vendored

package test
@HiddenDeclaration
fun hiddenFunFromSameFile(){}
fun String.foo() {
hid<caret>
}
// INVOCATION_COUNT: 2
// ABSENT: hiddenFun
// ABSENT: hiddenProperty
// ABSENT: hiddenFunFromSameFile
// ABSENT: hiddenExtension
// EXIST: notHiddenFun
// EXIST: notHiddenProperty