brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · 6224080 Raw
23 lines · cpp
1// RUN: %clang_cc1 -std=c++2a -x c++ -verify %s2 3template<typename T, typename S = char> requires (sizeof(T) + sizeof(S) < 10)4// expected-note@-1{{because 'sizeof(char[100]) + sizeof(char) < 10' (101 < 10) evaluated to false}}5void f(T t, S s) requires (sizeof(t) == 1 && sizeof(s) == 1) { };6// expected-note@-1{{candidate template ignored: constraints not satisfied [with T = int, S = char]}}7// expected-note@-2{{because 'sizeof (t) == 1' (4 == 1) evaluated to false}}8// expected-note@-3{{candidate template ignored: constraints not satisfied [with T = char, S = short]}}9// expected-note@-4{{because 'sizeof (s) == 1' (2 == 1) evaluated to false}}10// expected-note@-5{{candidate template ignored: constraints not satisfied [with T = char[100], S = char]}}11 12template<>13void f<int>(int t, char s) { };14// expected-error@-1{{no function template matches function template specialization 'f'}}15 16template<>17void f<char, short>(char t, short s) { };18// expected-error@-1{{no function template matches function template specialization 'f'}}19 20template<>21void f<char[100]>(char t[100], char s) { };22// expected-error@-1{{no function template matches function template specialization 'f'}}23