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
The below code failed in std.traits.EnumSpecificMembers, with a dozen of errors(with 2.084).
I think this is a phobos issue.
import std.stdio;
enum DeprTest {
normal,
deprecated depr,
@disable dis,
}
void main() {
writeln( DeprTest.normal );
}
The text was updated successfully, but these errors were encountered:
kekeniro2 reported this on 2019-01-04T04:56:10Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=19547
CC List
Description
The below code failed in std.traits.EnumSpecificMembers, with a dozen of errors(with 2.084). I think this is a phobos issue. import std.stdio; enum DeprTest { normal, deprecated depr, @disable dis, } void main() { writeln( DeprTest.normal ); }The text was updated successfully, but these errors were encountered: