Files
kotlin-fork/idea/idea-completion/testData/weighers/basic/DeprecatedSinceKotlinFun.kt
T
2020-06-29 14:25:09 +03:00

19 lines
375 B
Kotlin
Vendored

fun foo1() {}
@Suppress("DEPRECATED_SINCE_KOTLIN_OUTSIDE_KOTLIN_SUBPACKAGE")
@Deprecated("")
@DeprecatedSinceKotlin(warningSince = "1.0")
fun foo2() {}
@Suppress("DEPRECATED_SINCE_KOTLIN_OUTSIDE_KOTLIN_SUBPACKAGE")
@Deprecated("")
@DeprecatedSinceKotlin(warningSince = "999.999")
fun foo3() {}
fun foo4() {}
fun test() {
foo<caret>
}
// ORDER: foo1, foo3, foo4, foo2