rt_gccstream/gcc/testsuite/g++.dg/expr/lval3.C

10 lines
85 B
C

// i++ is never an lvalue
void
f()
{
bool i = 0;
i++ = 3; // { dg-error "" }
}