File: bool-increment-SFINAE.cpp

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (37 lines) | stat: -rw-r--r-- 1,363 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// RUN: %clang_cc1 %std_cxx98-14 -fsyntax-only -verify=precxx17 %s
// RUN: %clang_cc1 -std=c++17 -fsyntax-only -verify=expected %s
// RUN: %clang_cc1 -std=c++17 -DFAILED_CXX17 -fsyntax-only -verify=failcxx17 %s
// RUN: %clang_cc1 %std_cxx20- -fsyntax-only -verify=cxx20 %s
// expected-no-diagnostics

template<class T> auto f(T t) -> decltype(++t); // precxx17-warning {{incrementing expression of type bool is deprecated}}

auto f(...) -> void;
void g() { f(true); }

#ifdef FAILED_CXX17

template<class T> auto f1(T t) -> decltype(++t); // failcxx17-note {{candidate template ignored: substitution failure [with T = bool]: ISO C++17 does not allow incrementing expression of type bool}}
auto f1(void) -> void; // failcxx17-note {{candidate function not viable: requires 0 arguments, but 1 was provided}}
void g1() { f1(true); } // failcxx17-error {{no matching function for call to 'f1'}}

#endif

#if __cplusplus >= 202002L
template <class T>
concept can_increment = requires(T t) {
  ++t;
};

template <class T>
void f() {
  static_assert(requires(T t) { ++t; }); // cxx20-error {{static assertion failed due to requirement 'requires (bool t) { <<error-expression>>; }'}}
}

int main() {
  f<bool>(); // cxx20-note {{in instantiation of function template specialization 'f<bool>' requested here}}
  static_assert(!can_increment<bool>); 

  return 0;
}
#endif