Thread overview | ||||||
---|---|---|---|---|---|---|
|
January 02, 2012 [Issue 7200] New: Array append causes Access Violation with symbolic debug info | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=7200 Summary: Array append causes Access Violation with symbolic debug info Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: bearophile_hugs@eml.cc --- Comment #0 from bearophile_hugs@eml.cc 2012-01-02 09:48:54 PST --- import std.typecons: Tuple; void main() { alias Tuple!(int, int) Foo; Foo[] a; a ~= Foo(0, 0); // Access Violation string[] b; } Compiling it with DMD 2.058head: dmd -g test.d gives an Access Violation at line 5 at runtime. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
April 19, 2012 [Issue 7200] Array append causes Access Violation with symbolic debug info | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=7200 SomeDude <lovelydear@mailmetrash.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lovelydear@mailmetrash.com --- Comment #1 from SomeDude <lovelydear@mailmetrash.com> 2012-04-19 12:22:51 PDT --- Not reproduced 2.059 under x86-32 / Win32. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
April 19, 2012 [Issue 7200] Array append causes Access Violation with symbolic debug info | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=7200 Brad Anderson <eco@gnuk.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |eco@gnuk.net --- Comment #2 from Brad Anderson <eco@gnuk.net> 2012-04-19 12:43:59 PDT --- (In reply to comment #1) > Not reproduced 2.059 under x86-32 / Win32. I also couldn't reproduce. Looks like it can be closed. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 20, 2013 [Issue 7200] Array append causes Access Violation with symbolic debug info | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=7200 Andrej Mitrovic <andrej.mitrovich@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |andrej.mitrovich@gmail.com Resolution| |WORKSFORME --- Comment #3 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2013-01-20 13:13:15 PST --- Can't reproduce in 2.057, 2.058, or 2.061. Could have been a temporary git-head problem. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation