view test/bug80.d @ 202:56e0c5b1d428 trunk

[svn r218] Added test results for [217]
author lindquist
date Mon, 12 May 2008 23:49:07 +0200
parents 5825d48b27d1
children d9d5d59873d8
line wrap: on
line source

module bug80;

void main()
{
    byte b = 10;
    int i = b += 2;
    printf("byte=%d int=%d\n", b, i);
    assert(b == 12);
    assert(i == 12);
}