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
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.
The text was updated successfully, but these errors were encountered:
Jan Jurzitza reported this on 2019-05-11T21:05:58Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=19865
Description
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.The text was updated successfully, but these errors were encountered: