You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
313 B
10 lines
313 B
// 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'}}
|
|
} |