https://d.puremagic.com/issues/show_bug.cgi?id=11998
Summary: writeln with string enum outputs the enum name, not
the string
Product: D
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Martin Nowak <[email protected]> 2014-01-25 17:08:01 PST ---
cat > bug.d << CODE
enum Enum : string
{
member = "printThis",
}
void main()
{
import std.stdio : writeln;
writeln(member);
}
CODE
dmd -run bug
----
Output is 'member' instead of 'printThis'.
See http://dpaste.dzfl.pl/e801e755
----
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------