[Issue 4610] std.bigint not working on OSX

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4610 --- Comment #1 from Don clugd...@yahoo.com.au 2010-08-10 00:20:12 PDT --- Created an attachment (id=709) Test case for osx It's impossible for me to fix this without help, as I don't have access to OSX. If you have access to OSX, please

[Issue 4602] Header generation turns 'typeof(x)(...)' into C-style cast

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4602 Don clugd...@yahoo.com.au changed: What|Removed |Added Keywords||wrong-code

[Issue 4610] std.bigint not working on OSX

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4610 --- Comment #2 from Jacob Carlborg d...@me.com 2010-08-10 02:32:44 PDT --- Created an attachment (id=710) Disassembly of osxbug -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail

[Issue 4610] std.bigint not working on OSX

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4610 Jacob Carlborg d...@me.com changed: What|Removed |Added CC||d...@me.com --- Comment

[Issue 4610] std.bigint not working on OSX

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4610 Don clugd...@yahoo.com.au changed: What|Removed |Added Keywords||wrong-code

[Issue 4611] New: static array of structs doesn't yield error message when exceeding 16MB limit

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4611 Summary: static array of structs doesn't yield error message when exceeding 16MB limit Product: D Version: D1 D2 Platform: All OS/Version: All Status: NEW

[Issue 4611] static array of structs doesn't yield error message when exceeding 16MB limit

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4611 --- Comment #1 from Trass3r mrmoc...@gmx.de 2010-08-10 07:31:31 PDT --- Never mind, class is in that list because size() simply returns PTRSIZE. So the question is if there are any forward reference cases where this patch fails because of

[Issue 4612] New: DMD DDoc marks both static and final methods of interfaces as abstract in generated documentation

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4612 Summary: DMD DDoc marks both static and final methods of interfaces as abstract in generated documentation Product: D Version: D2 Platform: All OS/Version: Windows

[Issue 4613] New: temporary generated inside foreach is not correctly destructed

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4613 Summary: temporary generated inside foreach is not correctly destructed Product: D Version: D2 Platform: Other OS/Version: Mac OS X Status: NEW Severity:

[Issue 4613] temporary generated inside foreach is not correctly destructed

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4613 --- Comment #1 from a...@aligature.com 2010-08-10 08:56:01 PDT --- Here is the output from a test run of the example. output a...@curie:~/Projects/d ./test.d before one begin one MyFile ctor one o n e end one MyFile dtor one close one after

[Issue 4614] New: ClassInfo.find seg faults on OS X

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4614 Summary: ClassInfo.find seg faults on OS X Product: D Version: D1 Platform: x86 OS/Version: Mac OS X Status: NEW Severity: major Priority: P2 Component:

[Issue 4610] std.bigint not working on OSX

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

[Issue 4615] New: dmdscript no longer compiles

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4615 Summary: dmdscript no longer compiles Product: D Version: D1 Platform: x86 OS/Version: Windows Status: NEW Severity: regression Priority: P2 Component:

[Issue 4434] Assertion failed: (tn-mod MODimmutable || tn-mod MODshared), function check, file mtype.c, line 887.

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4434 --- Comment #1 from Don clugd...@yahoo.com.au 2010-08-10 13:10:44 PDT --- This one seems to be really general. I think it's the cause of very many compiler bugs. Here's a pile of cases which ICE. struct MyStruct {} alias const (MyStruct)*

[Issue 4614] ClassInfo.find seg faults on OS X

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4614 Jacob Carlborg d...@me.com changed: What|Removed |Added CC||d...@me.com --- Comment

[Issue 4614] ClassInfo.find seg faults on OS X

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4614 --- Comment #2 from Justin Whear mrjn...@hotmail.com 2010-08-10 13:27:10 PDT --- Unfortunately, there's no way I'll be porting this from phobos anytime soon. (In reply to comment #1) I cannot reproduce this error with either dmd 2.047 or dmd

[Issue 4610] std.bigint not working on OSX

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4610 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

Re: ubyte in for loops

2010-08-10 Thread DBloke
Hmmm most strange, using same version of compiler as yours 2.047 I have attached the file for you to try, not sure if it makes a difference that I am running on 64 bit win7? I am not after help, just to confirm there maybe a bug with either ubyte or == ? Cheers begin 644 main.d

Re: ubyte in for loops

2010-08-10 Thread bearophile
Your code works, here too: http://ideone.com/Taq71 So maybe it's the 64 bit system that gives problems. Are you able to minimize your code, to show just the problem? So it will become a bug report for bugzilla. By the way, the D.bugs group is not for general chat, use D.learn instead. Bye,

Re: ubyte in for loops

2010-08-10 Thread bearophile
A different version of your code with some improvements: import std.stdio, std.cstream, std.random; void main() { uint chosen = uniform(1, 21); writeln(This is a guessing game); writeln(I have chosen a number between 1 and 20 ~ which you must guess); int guess =

[Issue 3294] forward reference to inferred return type of function call

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3294 David Simcha dsim...@yahoo.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 3294] forward reference to inferred return type of function call

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3294 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 4616] New: Link error with copy constructor of nested struct

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4616 Summary: Link error with copy constructor of nested struct Product: D Version: D2 Platform: x86 OS/Version: All Status: NEW Keywords: link-failure Severity: major

[Issue 4617] New: Alias this'ed symbols cannot be passed to templates

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4617 Summary: Alias this'ed symbols cannot be passed to templates Product: D Version: unspecified Platform: All OS/Version: All Status: NEW Keywords: rejects-valid

[Issue 4617] Alias this'ed symbols cannot be passed to templates

2010-08-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4617 --- Comment #1 from Shin Fujishiro rsi...@gmail.com 2010-08-10 22:39:48 PDT --- The bug also causes a false negative of __traits(isSame), becuase isSame reuses the same algorithm as template instantiation: test3.d static