[Issue 19691] ICE on null default value for struct parameter in constructor

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19691 --- Comment #2 from Basile-z --- reduced : module b19691; struct S1 { this(T)(T) { S2(""); } } struct S2 { this(S1 s = ""){} } --

[Issue 19691] ICE on null default value for struct parameter in constructor

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19691 --- Comment #3 from Basile-z --- The reduction is actually slightly different. With the upcoming fix the initial test case will pass an fall back on the string overload (even if with a dep message) but the reduction will fail. --

[Issue 19707] dls blocks libcurl.dll, stalling installation.

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19707 --- Comment #1 from Bastiaan Veelo --- Notified dls in https://github.com/d-language-server/dls/issues/31 --

[Issue 19707] New: dls blocks libcurl.dll, stalling installation.

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19707 Issue ID: 19707 Summary: dls blocks libcurl.dll, stalling installation. Product: D Version: D2 Hardware: x86 OS: Windows Status: NEW Severity: trivial

[Issue 18407] debug should escape nothrow

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18407 --- Comment #10 from Dlang Bot --- @wilzbach updated dlang/dmd pull request #8449 "Issue 18407 - debug should escape nothrow" mentioning this issue: - Issue 18407 - debug should escape nothrow https://github.com/dlang/dmd/pull/8449 --

[Issue 19691] ICE on null default value for struct parameter in constructor

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19691 Basile-z changed: What|Removed |Added CC||b2.t...@gmx.com Hardware|x86

[Issue 17884] fwd reference leads to dmd assert failure

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17884 Basile-z changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 19708] New: Can't use __traits(getAttributes, ...)[...] as a type

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19708 Issue ID: 19708 Summary: Can't use __traits(getAttributes, ...)[...] as a type Product: D Version: D2 Hardware: x86_64 OS: Windows Status: NEW Severity: normal

[Issue 16390] __traits not accepted where a type is expected

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16390 moonlightsenti...@disroot.org changed: What|Removed |Added CC||moonlightsentinel@disroot.o

[Issue 16237] Some DMD Assertion Failures

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16237 Basile-z changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9718] Circular reference with a simple Algebraic

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9718 Basile-z changed: What|Removed |Added CC||b2.t...@gmx.com Summary|[ICE] With a

[Issue 16390] __traits not accepted where a type is expected

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16390 moonlightsenti...@disroot.org changed: What|Removed |Added Severity|enhancement |minor --

[Issue 17056] No filename and line info for wrong extern C++ type

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17056 Basile-z changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 15406] [ICE] Accessing member of namespace embedded in a struct causes segfault

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15406 Basile-z changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9363] Array slice initialization with implicitly castable type

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9363 Basile-z changed: What|Removed |Added CC||b2.t...@gmx.com Component|dmd

[Issue 11377] if add -inline option. dmd source file in assertion failed.

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11377 Basile-z changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 19691] ICE on null default value for struct parameter in constructor

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19691 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #4 from Dlang Bot ---

[Issue 19635] -checkaction=context not working with attributes

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19635 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #4 from Dlang Bot ---

[Issue 19700] [2.085.0-beta.2] Obj-C wrong code overloading selectors and extern(D)

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19700 --- Comment #7 from Jacob Carlborg --- How about, instead of just checking for methods with a body, the compiler can require the linkage to be Objective-C, for a class to be considered defined internally? --

[Issue 19700] [2.085.0-beta.2] Obj-C wrong code overloading selectors and extern(D)

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19700 --- Comment #8 from Adam D. Ruppe --- Huh, I don't know. I kinda like `extern extern` - there's precedent for that in accessing C variables declared elsewhere, and the Objective-C class is similar to that. But, I don't know for sure. --

[Issue 19709] New: CRuntime_Musl is missing implementation for ARM

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19709 Issue ID: 19709 Summary: CRuntime_Musl is missing implementation for ARM Product: D Version: D2 Hardware: Other OS: Linux Status: NEW Severity: enhancement

[Issue 15235] inline asm: silent ICE (segfault) in asm_add_exp()

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15235 Basile-z changed: What|Removed |Added Keywords|ice, pull |diagnostic CC|

[Issue 19635] -checkaction=context not working with attributes

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19635 Seb changed: What|Removed |Added CC||greensunn...@gmail.com --- Comment #3 from Seb --- >

[Issue 19635] -checkaction=context not working with attributes

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19635 Bastiaan Veelo changed: What|Removed |Added CC||basti...@veelo.net --- Comment #2 from

[Issue 19677] [ddox alias docs] omits alias contents

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19677 --- Comment #2 from Bastiaan Veelo --- Done: https://github.com/rejectedsoftware/ddox/issues/219 --

[Issue 19710] New: [Home]

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19710 Issue ID: 19710 Summary: [Home] Product: D Version: D2 Hardware: All URL: http://dlang.org/ OS: All Status: NEW Severity: regression

[Issue 14147] Compiler crash on identical functions in a single module

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Basile-z changed: What|Removed |Added CC||b2.t...@gmx.com --- Comment #6 from Basile-z

[Issue 19645] Default parameters not checked for @safe

2019-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19645 --- Comment #3 from anonymous4 --- relativePath is inferred as pure too --