[Issue 7324] New: Access Violation when printing struct with union
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Jan 19 20:04:36 PST 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7324
Summary: Access Violation when printing struct with union
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: major
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: andrej.mitrovich at gmail.com
--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2012-01-19 20:04:35 PST ---
import std.stdio;
struct JSONValue {
union {
string str;
long integer;
real floating;
JSONValue[string] object;
JSONValue[] array;
}
int type;
}
void main()
{
JSONValue foo;
foo.str = "a"; // remove to avoid access violation
JSONValue bar;
bar.object["foo"] = foo;
writeln(bar.object["foo"]); // object.Error: Access Violation
}
This is taken from std.json, which suffers from these segfaults when you try to
print out the 'object' field. Using `foreach (key, val)` works fine though.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list