reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 | // RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -verify -triple x86_64-linux-gnu -std=c++17 %s struct BoolRef { operator bool&(); }; void foo(BoolRef br) { // C++ [over.built]p3: Increment for bool was removed in C++17. bool b = br++; // expected-error{{cannot increment value of type 'BoolRef'}} } |