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

2023-10-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Issue 14147 depends on issue 2789, which changed state. Issue 2789 Summary: Functions overloads are not checked for conflicts https://issues.dlang.org/show_bug.cgi?id=2789 What|Removed |Added

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

2020-03-20 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 | --

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

2019-07-05 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Basile-z changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

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

2019-03-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 --- Comment #7 from Seb --- No, the PRs were reverted and the deprecation cycle is supposed to be started by https://github.com/dlang/dmd/pull/8429 which hasn't been merged yet. --

[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 14147] Compiler crash on identical functions in a single module

2018-11-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Walter Bright changed: What|Removed |Added CC||bugzi...@digitalmars.com See

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

2018-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Seb changed: What|Removed |Added CC||greensunn...@gmail.com ---

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

2018-02-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Issue 14147 depends on issue 2789, which changed state. Issue 2789 Summary: Functions overloads are not checked for conflicts https://issues.dlang.org/show_bug.cgi?id=2789 What|Removed |Added

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

2018-02-07 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Issue 14147 depends on issue 2789, which changed state. Issue 2789 Summary: Functions overloads are not checked for conflicts https://issues.dlang.org/show_bug.cgi?id=2789 What|Removed |Added

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

2018-01-24 Thread d-bugmail--- via Digitalmars-d-bugs
(int); alias sigfn_t2 = void function(int) nothrow @nogc; sigfn_t bsd_signal(int sig, sigfn_t func); sigfn_t2 bsd_signal(int sig, sigfn_t2 func) nothrow @nogc; // no error This behavior must be reconsidered in the future. * fix Issue 14147 - Compiler crash on identical functions in a single

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

2015-02-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Ketmar Dark ket...@ketmar.no-ip.org changed: What|Removed |Added CC||ket...@ketmar.no-ip.org

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

2015-02-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 --- Comment #2 from Kenji Hara k.hara...@gmail.com --- Reduced test case: struct S(alias func) { void foo() { func(1); } } void main() { } pure auto mul(const int[] left, const int[] right) { S!(a = a)().foo(); } pure auto mul(const int[]

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

2015-02-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Depends on|2789| --

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

2015-02-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Hardware|x86_64 |All Depends on|

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

2015-02-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Keywords||ice, pull --- Comment #3

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

2015-02-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14147 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Depends on||2789 --