struct S(T) {
    T value;
    bool opEquals(U:S!V,V)(in U r) const
    { return value==r.value; }
}

Reply via email to