Comment #0 by default_357-line — 2020-11-09T07:51:03Z
Consider the following code:
``` D
struct S {
deprecated("no") void foo(T)(int) { }
void foo(T)(string) { }
}
void main() { S().foo!int("hi"); }
```
Since 2.094.0, this raises a deprecation warning, despite the fact that the overloaded call to foo doesn't select the deprecated version of foo.