You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Example from deprecatedInheritance documentation@deprecatedInheritance("this class will be made final", "FooLib 12.0")
classFoovalfoo=newFoo// no deprecation warningclassBarextendsFoo// warning: inheritance from class Foo is deprecated (since FooLib 12.0): this class will be made final// class Bar extends Foo// ^