enum Foo {
a,
deprecated b,
}
enum Bar {
deprecated c = Foo.b
}
is generating the following deprecation notice:
a.d(7): Deprecation: enum member `a.Foo.b` is deprecated
Using deprecated values inside a deprecated field should not generate that notice.
Comment #1 by robert.schadek — 2024-12-13T19:03:22Z