Comment #0 by pro.mathias.lang — 2021-03-01T00:39:56Z
This triggers a deprecation n v2.095.1:
```
// File: a.d
module a;
private string csiSeq (string value) ()
{
return value;
}
public alias csiSeq!("SEQ") up;
// File: b.d
module b;
import a;
void main ()
{
string s = up;
}
```
Running `~/dlang/dmd-2.094.0/osx/bin/dmd -i b.d` pass without message.
Using v2.095.1 however:
```
b.d(5): Deprecation: Function a.csiSeq!"SEQ".csiSeq of type pure nothrow @nogc @safe string() is not accessible from module b
```
Comment #1 by razvan.nitu1305 — 2021-03-03T14:34:04Z