1 // RUN: %clang_cc1 -std=c++2a -x c++ -verify %s
2
3 template<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}}
f(T t,S s)5 void 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
12 template<>
f(int t,char s)13 void f<int>(int t, char s) { };
14 // expected-error@-1{{no function template matches function template specialization 'f'}}
15
16 template<>
f(char t,short s)17 void f<char, short>(char t, short s) { };
18 // expected-error@-1{{no function template matches function template specialization 'f'}}
19
20 template<>
f(char t[100],char s)21 void f<char[100]>(char t[100], char s) { };
22 // expected-error@-1{{no function template matches function template specialization 'f'}}