struct Range {
    private __vector(ushort) _outer;
    private size_t _a, _b;

this(vector(ushort) data, size_t a, size_t b) { // <<<<<<<< line 457
      _outer = data;
      _a = a;
      _b = b;
    }

imo problem is in string
private __vector(ushort)_outer;
it looks like template(vector!ushort) or function or this is vector from core.simd
and replacing it to private long _outer; fix the problem
paste code imebra.d and imebra_im.d to someplace

Reply via email to