[Issue 20583] New: no warnings printed when indexing through deprecated alias this
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sun Feb 16 01:09:12 UTC 2020
https://issues.dlang.org/show_bug.cgi?id=20583
Issue ID: 20583
Summary: no warnings printed when indexing through deprecated
alias this
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Keywords: diagnostic
Severity: normal
Priority: P1
Component: dmd
Assignee: nobody at puremagic.com
Reporter: elpenguino+D at gmail.com
```
unittest {
struct X {
int[1] x;
deprecated alias x this;
}
auto y = X()[0];
}
```
The expected deprecation warning is not printed.
--
More information about the Digitalmars-d-bugs
mailing list