[Issue 7602] [CTFE] Segmentation fault when using array.keys on a null AA

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7602 Don clugd...@yahoo.com.au changed: What|Removed |Added CC||clugd...@yahoo.com.au

[Issue 7608] New: __traits(allMembers) is broken for template instances

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7608 Summary: __traits(allMembers) is broken for template instances Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: major Priority: P2

[Issue 7608] __traits(allMembers) is broken

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7608 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added Summary|__traits(allMembers) is

[Issue 7608] __traits(allMembers) is broken

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7608 --- Comment #2 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-02-29 03:13:06 PST --- Actually it's broken for non-template types too: import std.stdio; import std.traits; struct Base { version(none) { int x; }

[Issue 7609] New: Can't access field of aliased type via 'with' statement

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7609 Summary: Can't access field of aliased type via 'with' statement Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal

[Issue 7610] New: DMD -H switch doesn't output interfaces to package hierarchy

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7610 Summary: DMD -H switch doesn't output interfaces to package hierarchy Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: critical

[Issue 7512] Associative arrays implementation loses const and immutable in AA.get() and AA[key]

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7512 --- Comment #7 from hst...@quickfur.ath.cx 2012-02-29 08:02:19 PST --- Fixed in latest git: https://github.com/D-Programming-Language/druntime/commit/96bc813e2a87a05da36b55274c44efd4e704417b -- Configure issuemail:

[Issue 7512] Associative arrays implementation loses const and immutable in AA.get() and AA[key]

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7512 hst...@quickfur.ath.cx changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 7611] New: static this() in template is not executed in .lib

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7611 Summary: static this() in template is not executed in .lib Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Severity: normal Priority: P2

[Issue 7610] DMD -H switch doesn't output interfaces to package hierarchy

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7610 d...@dawgfoto.de changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 7512] Associative arrays implementation loses const and immutable in AA.get() and AA[key]

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7512 hst...@quickfur.ath.cx changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 7612] New: Bad error message when missing compile time opCmp in struct used in enums

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7612 Summary: Bad error message when missing compile time opCmp in struct used in enums Product: D Version: D2 Platform: All OS/Version: All Status: NEW

[Issue 7512] Associative arrays implementation loses const and immutable in AA.get() and AA[key]

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7512 hst...@quickfur.ath.cx changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 7613] New: __traits(getMember) on inner unittest: Assertion failure: 'type' on line 6695 in file 'expression.c'

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7613 Summary: __traits(getMember) on inner unittest: Assertion failure: 'type' on line 6695 in file 'expression.c' Product: D Version: D2 Platform: All OS/Version: All

[Issue 7371] Associative arrays as associative array keys

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7371 hst...@quickfur.ath.cx changed: What|Removed |Added CC||hst...@quickfur.ath.cx ---

[Issue 7585] functions in templates inferred as delegate

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7585 --- Comment #5 from github-bugzi...@puremagic.com 2012-02-29 12:19:43 PST --- Commit pushed to master at https://github.com/D-Programming-Language/dmd

[Issue 7585] functions in templates inferred as delegate

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7585 --- Comment #6 from Ali Cehreli acehr...@yahoo.com 2012-02-29 13:15:41 PST --- Just a reminder: the spec needs to be updated. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail

[Issue 4579] std.typecons.Tuple syntax unpacking sugar

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4579 --- Comment #3 from bearophile_h...@eml.cc 2012-02-29 14:10:39 PST --- This syntax can't be used, it's part of the new lambda syntax: auto tups = [tuple(1,2), tuple(3,4)]; auto r = map!((x,y) = x * y)(tups); A possible solution: auto tups =

[Issue 7614] New: Spec says pragma(msg) only accepts strings, but it accepts anything

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7614 Summary: Spec says pragma(msg) only accepts strings, but it accepts anything Product: D Version: D1 D2 Platform: All OS/Version: All Status: NEW

[Issue 5466] Associative array byPair

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5466 --- Comment #3 from bearophile_h...@eml.cc 2012-02-29 14:18:53 PST --- This example shows an use case of byItem. Given a string, the task here is to show the char frequencies, putting higher frequencies on top, and sorting alphabetically the

[Issue 7585] functions in templates inferred as delegate

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7585 --- Comment #7 from github-bugzi...@puremagic.com 2012-02-29 15:22:33 PST --- Commit pushed to master at https://github.com/D-Programming-Language/dmd

[Issue 6834] std.stdio conflicts with core.stdc.stdio

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6834 gou...@gmail.com changed: What|Removed |Added CC||gou...@gmail.com --- Comment #2

[Issue 6785] Wrong error message from pragma(msg) of failed instantiation

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6785 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Keywords||pull

[Issue 6785] Wrong error message from pragma(msg) of failed instantiation

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6785 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 7568] pragma(msg) segfaults with an aggregate including a class.

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7568 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 7251] GC not working

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7251 wfunct...@hotmail.com changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 7319] .bss section not used

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7319 Marco Leise marco.le...@gmx.de changed: What|Removed |Added Severity|normal |minor -- Configure

[Issue 7615] New: Error aliasing an enum member through an alias of a type inside a struct

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7615 Summary: Error aliasing an enum member through an alias of a type inside a struct Product: D Version: D2 Platform: All OS/Version: All Status: NEW

[Issue 7616] New: aggregates don't inherit pure nothrow from outer scope

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7616 Summary: aggregates don't inherit pure nothrow from outer scope Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2

[Issue 7568] pragma(msg) segfaults with an aggregate including a class.

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7568 --- Comment #2 from github-bugzi...@puremagic.com 2012-02-29 23:35:04 PST --- Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd

[Issue 7568] pragma(msg) segfaults with an aggregate including a class.

2012-02-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7568 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED