[Issue 18604] in parameter storage class should be deprecated

2020-05-18 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 Mathias LANG changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 18604] in parameter storage class should be deprecated

2018-03-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 --- Comment #7 from anonymous4 --- Another possibility is -transition=in flag that will deprecate `in` on demand, and after people remove usage of `in` storage class from their code, it can start enforce `scope const` meaning. --

[Issue 18604] in parameter storage class should be deprecated

2018-03-22 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 Carsten Blüggel changed: What|Removed |Added CC||chi...@posteo.net --

[Issue 18604] in parameter storage class should be deprecated

2018-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 Jonathan M Davis changed: What|Removed |Added CC||issues.dl...@jmdavisprog.co

[Issue 18604] in parameter storage class should be deprecated

2018-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 --- Comment #5 from anonymous4 --- If one wants to remove `in` attribute the fix is rather simple 's/in/const/' --

[Issue 18604] in parameter storage class should be deprecated

2018-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 --- Comment #4 from anonymous4 --- Also the reason why safe code receives breakage is because it's invalid, and there should be no guarantee for invalid code to work. --

[Issue 18604] in parameter storage class should be deprecated

2018-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 --- Comment #3 from anonymous4 --- (In reply to Seb from comment #0) > `in` currently just means `const` That antifeature was only sort of done for safe code, whatever you do, system code shouldn't be affected. Though given how much breakage safe cod

[Issue 18604] in parameter storage class should be deprecated

2018-03-19 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 Adam D. Ruppe changed: What|Removed |Added CC||destructiona...@gmail.com --- Comment #2 fro

[Issue 18604] in parameter storage class should be deprecated

2018-03-13 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18604 --- Comment #1 from Seb --- https://github.com/dlang/dmd/pull/8021 --