rspec/rules/S1874/kotlin/rule.adoc

11 lines
198 B
Plaintext
Raw Normal View History

Code annotated as deprecated should not be used since it will be removed sooner or later.
== Noncompliant Code Example
----
@Deprecated("")
interface Old
class Example : Old // Noncompliant
----