Light classes: do not rely on dummy resolve for members with DeprecationLevel.HIDDEN

Use heuristic psi check to determine such cases
This commit is contained in:
Pavel V. Talanov
2017-04-18 18:08:03 +03:00
parent 85033abc7c
commit df423cfb61
9 changed files with 88 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
// a.A
package a
class A {
@Deprecated("f")
fun f() {
}
}