[Issue 20884] Using getMember with a type as first argument can lose type qualifiers.

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20884 Iain Buclaw changed: What|Removed |Added Priority|P1 |P3 --

[Issue 20884] Using getMember with a type as first argument can lose type qualifiers.

2022-01-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20884 --- Comment #4 from Boris Carvajal --- That is an alias bug, replace the getMember trait with 'mixin("T." ~ name)' in your code and the result is the same. ``` alias Ref = mixin("T." ~ name); ... alias Type2 = typeof(mixin("T." ~ name)); ``` I

[Issue 20884] Using getMember with a type as first argument can lose type qualifiers.

2022-01-26 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20884 Mathias LANG changed: What|Removed |Added Status|RESOLVED|REOPENED CC|

[Issue 20884] Using getMember with a type as first argument can lose type qualifiers.

2020-05-30 Thread d-bugmail--- via Digitalmars-d-bugs
|--- |FIXED --- Comment #2 from Dlang Bot --- dlang/dmd pull request #11200 "Fix Issue 20884 - Using getMember with a type as first argument can l…" was merged into stable: - aa33b64dfbe78a6621314472e1ad88ea5aa2afcb by Boris Carvajal: Fix Issue 20884 - Using getMember with a typ

[Issue 20884] Using getMember with a type as first argument can lose type qualifiers.

2020-05-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20884 Boris Carvajal changed: What|Removed |Added Blocks||13343 Referenced Issues:

[Issue 20884] Using getMember with a type as first argument can lose type qualifiers.

2020-05-30 Thread d-bugmail--- via Digitalmars-d-bugs
--- @BorisCarvajal created dlang/dmd pull request #11200 "Fix Issue 20884 - Using getMember with a type as first argument can l…" fixing this issue: - Fix Issue 20884 - Using getMember with a type as first argument can lose type qualifiers. https://github.com/dlang/dmd/pull/11200 --