[Issue 19454] Name collisions with unnamed function parameters

2023-05-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

Dlang Bot  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Dlang Bot  ---
dlang/dmd pull request #15153 "Fix 19454 - Name collisions with unnamed
function parameters" was merged into master:

- ba2f9222fd46cb450332dbad776b19767d3f2d42 by Dennis Korpel:
  Fix 19454 - Name collisions with unnamed function parameters

https://github.com/dlang/dmd/pull/15153

--


[Issue 19454] Name collisions with unnamed function parameters

2023-05-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

Dlang Bot  changed:

   What|Removed |Added

   Keywords||pull

--- Comment #3 from Dlang Bot  ---
@dkorpel created dlang/dmd pull request #15153 "Fix 19454 - Name collisions
with unnamed function parameters" fixing this issue:

- Fix 19454 - Name collisions with unnamed function parameters

https://github.com/dlang/dmd/pull/15153

--


[Issue 19454] Name collisions with unnamed function parameters

2023-04-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

RazvanN  changed:

   What|Removed |Added

 CC||snarwin+bugzi...@gmail.com

--- Comment #2 from RazvanN  ---
*** Issue 19578 has been marked as a duplicate of this issue. ***

--


[Issue 19454] Name collisions with unnamed function parameters

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

Iain Buclaw  changed:

   What|Removed |Added

   Priority|P1  |P3

--


[Issue 19454] Name collisions with unnamed function parameters

2020-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

Basile-z  changed:

   What|Removed |Added

 CC|b2.t...@gmx.com |

--


[Issue 19454] Name collisions with unnamed function parameters

2019-12-11 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

Basile-z  changed:

   What|Removed |Added

   Keywords||bootcamp, patch
 CC||b2.t...@gmx.com
   Hardware|x86_64  |All
 OS|Linux   |All
   Severity|major   |normal

--- Comment #1 from Basile-z  ---
---
diff --git a/src/dmd/semantic3.d b/src/dmd/semantic3.d
index 7b08f3639..6e34ed7db 100644
--- a/src/dmd/semantic3.d
+++ b/src/dmd/semantic3.d
@@ -439,7 +439,7 @@ private extern(C++) final class Semantic3Visitor : Visitor
 /* Generate identifier for un-named parameter,
  * because we need it later on.
  */
-fparam.ident = id = Identifier.generateId("_param_",
i);
+fparam.ident = id = Identifier.generateId("__param_",
i);
 stc |= STC.temp;
 }
 Type vtype = fparam.type;

---

--


[Issue 19454] Name collisions with unnamed function parameters

2018-11-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=19454

Seb  changed:

   What|Removed |Added

 CC||greeen...@gmail.com
   Severity|enhancement |major

--