I have a question kind of about compiler and kind ...
# compiler
m
I have a question kind of about compiler and kind of about YouTrack. I have a use case where I need to suppress
ERROR
and
HIDDEN
deprecation level compiler errors for generic parameter on a deprecated class itself. More info here – https://youtrack.jetbrains.com/issue/KT-34480#focus=Comments-27-4558822.0-0. Is this something that could be added? A follow-up question is about YouTrack. I found the linked issue but the person that, I think, was handling it is now banned. How such old-ish and stale issues are handled by JetBrains? Is anyone from JB team notified about it or is there some procedure to bring issues up?
m
I don’t think you can suppress
HIDDEN
. But `ERROR`:
@Suppress("DEPRECATION_ERROR")
m
Oh, cool. Thanks. One more to go
m
The problem is even if you ignore the error of the hidden symbol, the symbol still doesn’t work. It simply doesn’t exist: https://youtrack.jetbrains.com/issue/KT-34449