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

16 lines
295 B
Kotlin
Vendored

package test
@Deprecated("hidden", level = DeprecationLevel.HIDDEN)
fun hiddenFunFromSameFile(){}
fun String.foo() {
hid<caret>
}
// ABSENT: hiddenFun
// ABSENT: hiddenProperty
// ABSENT: hiddenFunFromSameFile
// ABSENT: hiddenExtension
// EXIST: notHiddenFun
// EXIST: notHiddenProperty