https://issues.dlang.org/show_bug.cgi?id=13775
Mathias LANG <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED CC| |[email protected] Resolution|FIXED |--- --- Comment #14 from Mathias LANG <[email protected]> --- Vibe.d is suffering from it as well: ---- case AF_INET6: ubyte[16] ip = addr_ip6.sin6_addr.s6_addr; auto ret = appender!string(); ret.reserve(40); foreach (i; 0 .. 8) { if (i > 0) ret.put(':'); ret.formattedWrite("%x", bigEndianToNative!ushort(cast(ubyte[2])ip[i*2 .. i*2+2])); } return ret.data; ---- However this code still fails with a recent compiler: source/vibe/core/net.d(181): Error: cannot cast expression ip[cast(ulong)(i * 2)..cast(ulong)(i * 2 + 2)] of type ubyte[] to ubyte[2] Tested with "v2.067-devel-932e0a5" (From today, Feb 12). --
