blob: 72abd3f33cf9955d60588c3a3ca16362f5f8483d [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=21424
void main()
{
ubyte[10] buf;
size_t pos = 0;
size_t num = 5;
buf[pos++] += num;
assert(pos == 1);
assert(buf[0] == 5);
assert(buf[1] == 0);
}