Hello! I have a class A and a class B (that extend...
# compiler
d
Hello! I have a class A and a class B (that extends A) which I would like to deprecate with
ERROR
, would it be possible to do it simultaneously? Class B complains about the usage of A
m
@Suppress("DEPRECATION_ERROR")
on
B
d
thanks!