Comment #0 by john.loughran.colvin — 2016-08-27T12:09:09Z
% tree
.
└── a
└── b
├── c.d
└── f.d
2 directories, 2 files
% cat a/b/c.d
module a.b.c;
import a.b.f : A;
% cat a/b/f.d
import a.b.c;
% dmd a/b/c.d
a/b/c.d(2): Deprecation: a.b.c.A is not visible from module c
a/b/c.d(2): Deprecation: a.b.c.A is not visible from module c
a/b/c.d(2): Error: alias a.b.c.A recursive alias declaration
which really makes no sense...
Comment #1 by robert.schadek — 2024-12-13T18:49:49Z