Details | Compare with Previous | View Log
// ++i is always an lvalue
void
f()
{
bool i = 0;
++i = 3;
}