Analysis API: Don't resolve references to @Deprecated(HIDDEN)

declarations.
This commit is contained in:
Mark Punzalan
2021-09-23 07:43:50 +00:00
committed by TeamCityServer
parent 41a1fa25e2
commit 7425986bf0
7 changed files with 47 additions and 0 deletions
@@ -0,0 +1,8 @@
// UNRESOLVED_REFERENCE
@Deprecated("don't use i", level = DeprecationLevel.HIDDEN)
val i: Int = 1
fun test() {
<caret>i
}