[Issue 1601] shr and shl error message is missing line numbers

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Oct 20 01:32:17 PDT 2007


http://d.puremagic.com/issues/show_bug.cgi?id=1601





------- Comment #1 from matti.niemenmaa+dbugzilla at iki.fi  2007-10-20 03:32 -------
Don't forget about UShr:

void main() {
    int i;

    i >>= 33;
    i <<= 33;
    i >>>= 33;
    i = i >> 33;
    i = i << 33;
    i = i >>> 33;
}


-- 



More information about the Digitalmars-d-bugs mailing list