rt_gccstream/gcc/testsuite/g++.dg/overload/rvalue1.C

11 lines
168 B
C

// PR c++/42655
void unused(const bool &) { }
int main() {
volatile bool x = false;
unused(!!x); // type of "!x" is bool
unused(!x); // type of "!x" is bool
}