2 // { dg-options "-Wunused" }
6 bool isEmpty() const { return true; }
14 bOk == foo.isEmpty(); // { dg-warning "not used" }
22 f() == 0; // { dg-warning "not used" }
23 f() != 1; // { dg-warning "not used" }
24 f() < 2; // { dg-warning "not used" }
25 f() > 3; // { dg-warning "not used" }
26 f() <= 4; // { dg-warning "not used" }
27 f() >= 5; // { dg-warning "not used" }
28 f() + 6; // { dg-warning "not used" }
29 f() - 7; // { dg-warning "not used" }
30 f() * 8; // { dg-warning "not used" }
31 f() / 9; // { dg-warning "not used" }
32 +f(); // { dg-warning "not used" }
33 -f(); // { dg-warning "not used" }