[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 --- Comment #7 from Andrei Alexandrescu --- (In reply to Martin Nowak from comment #6) > (In reply to Andrei Alexandrescu from comment #5) > > The issue is subtler than that (I'd agree the snippet above is a clear cut). > > The thing is Bucketizer _a

[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 --- Comment #6 from Martin Nowak --- (In reply to Andrei Alexandrescu from comment #5) > The issue is subtler than that (I'd agree the snippet above is a clear cut). > The thing is Bucketizer _also_ defines its own reallocate: Ah, I was already wond

[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 Andrei Alexandrescu changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID

[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-29 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 --- Comment #4 from Martin Nowak --- This is just an occurrence of wrong code caused by issue 314, b/c selective imports weren't checked for visibility until recently. struct Bucketizer { import whatever : reallocate; // <- private } struct Seg

[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-29 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 Martin Nowak changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-27 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 Martin Nowak changed: What|Removed |Added CC||c...@dawg.eu Assignee|nob...@purema

[Issue 16085] Imported name causes lookup deprecation warning even if masked by member name

2016-05-27 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16085 --- Comment #1 from Andrei Alexandrescu --- https://github.com/dlang/phobos/pull/4371 --