view tests/mini/c.d @ 995:125c09006ac6

Fix some -vv output
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 26 Feb 2009 14:51:05 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module c;

void main()
{
    ushort a = 0xFFF0;
    ushort b = 0x0FFF;
    auto t = a & b;
    a &= b;
    assert(t == a);
}