[Issue 2716] Confusion of auto and scope as the class attribute

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2716 Walter Bright changed: What|Removed |Added Status|REOPENED|RESOLVED CC|

[Issue 2511] Covariant return type doesn't work with circular import

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2511 --- Comment #7 from Rainer Schuetze 2010-08-28 00:23:08 PDT --- Oh, it's only been tested on interfaces. ClassDeclaration::isBaseInfoComplete() is broken, class Object doesn't need a base class: int ClassDeclaration::isBaseInfoComplete() {

[Issue 2716] Confusion of auto and scope as the class attribute

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2716 Haruki Shigemori changed: What|Removed |Added Keywords||accepts-invalid Status|R

[Issue 2716] Confusion of auto and scope as the class attribute

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2716 Haruki Shigemori changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 4745] New: Non-uniform handling of commas in static initialization of structs

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4745 Summary: Non-uniform handling of commas in static initialization of structs Product: D Version: D2 Platform: x86_64 OS/Version: Linux Status: NEW Severity

[Issue 4278] allow inlining of super calls (undo limitations of bug3500's fix)

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4278 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4695] std.range.zip is broken

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4695 David Simcha changed: What|Removed |Added CC||dsim...@yahoo.com --- Comment #1 from D

[Issue 2477] Trailing comma in array literal sometimes accepted, sometimes not

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2477 Walter Bright changed: What|Removed |Added CC||bugzi...@digitalmars.com Ver

[Issue 2477] Trailing comma in array literal sometimes accepted, sometimes not

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2477 --- Comment #10 from Walter Bright 2010-08-28 13:20:58 PDT --- A more comprehensive test case: void foo(T,)(T t) { T x; } void main() { int[] data = [1,2,3,]; data = [ 1,2,3, ]; auto i = data[1,]; foo!(int)(3); foo!(int,)

[Issue 2477] Trailing comma in array literal sometimes accepted, sometimes not

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2477 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 2477] Trailing comma in array literal sometimes accepted, sometimes not

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2477 --- Comment #12 from Walter Bright 2010-08-28 13:51:24 PDT --- Phobos changeset 1939 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 4746] New: CTFE regression + CTFE/normal execution differences (splitlines).

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4746 Summary: CTFE regression + CTFE/normal execution differences (splitlines). Product: D Version: D2 Platform: x86_64 OS/Version: Windows Status: NEW Severit

[Issue 4291] Pure functions cannot access mixed in variables

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4291 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4177] __ctfe can't be used in pure functions

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4177 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 3046] Segfault with C++ static variable (Linux only)

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3046 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4030] Better object array literal type inference

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4030 klickverbot changed: What|Removed |Added CC||c...@klickverbot.at --- Comment #1 from

[Issue 4030] Better object array literal type inference

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4030 nfx...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 3543] : ? operator can't find common type for classes/interfaces

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3543 nfx...@gmail.com changed: What|Removed |Added CC||bearophile_h...@eml.cc --- Comment #

[Issue 4747] New: Make each unittest block a separate function that runs independently of the others

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4747 Summary: Make each unittest block a separate function that runs independently of the others Product: D Version: D2 Platform: Other OS/Version: Linux Status: NEW

[Issue 4653] More unit test functions should be added - like assertEqual() and assertNotEqual()

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4653 Jonathan M Davis changed: What|Removed |Added Attachment #723 is|0 |1 obsolete|

[Issue 4748] New: Shadowing declaration error in std.string.tolower

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4748 Summary: Shadowing declaration error in std.string.tolower Product: D Version: D2 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2

[Issue 3976] segfault on anonymous struct/union

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3976 --- Comment #5 from Ellery Newcomer 2010-08-28 21:12:59 PDT --- (In reply to comment #4) > (In reply to comment #3) > > > > There is no kmd file. Also this code seems to use Tango (dunno which > > version!). > > So it's not a usable test ca

[Issue 4749] New: Templated & non-templated constructors conflicting

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4749 Summary: Templated & non-templated constructors conflicting Product: D Version: D2 Platform: x86_64 OS/Version: Linux Status: NEW Severity: normal Priority: P2

[Issue 4749] Templated & non-templated constructors conflicting

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4749 --- Comment #1 from Mitch Hayenga 2010-08-28 21:59:26 PDT --- Btw, oops bugs in that code. Swapped s & str in the assignment. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail

[Issue 4749] Templated & non-templated constructors conflicting

2010-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4749 --- Comment #2 from Mitch Hayenga 2010-08-28 22:08:43 PDT --- Also likely the same bug as 2972. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---