https://issues.dlang.org/show_bug.cgi?id=13056
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Walter Bright <[email protected]> --- A reduced test case: import std.range; struct DirEntry { alias name this; @property string name(); } void main() { static assert(isRandomAccessRange!DirEntry); } --
