1 // RUN: %clang_cc1 -std=c++2a -emit-pch %s -o %t
2 // RUN: %clang_cc1 -std=c++2a -include-pch %t -verify %s
4 // RUN: %clang_cc1 -std=c++2a -emit-pch -fpch-instantiate-templates %s -o %t
5 // RUN: %clang_cc1 -std=c++2a -include-pch %t -verify %s
7 // expected-no-diagnostics
12 template<typename T
, typename U
= char>
13 concept SizedLike
= sizeof(T
) == sizeof(U
);
15 template <class T
> void f(T
) requires (sizeof(int) == sizeof(T
)) {}
16 template <class T
> void f(T
) requires (sizeof(char) == sizeof(T
)) {}
18 template <class T
> requires (sizeof(int) == sizeof(T
)) void g(T
) {}
19 template <class T
> requires (sizeof(char) == sizeof(T
)) void g(T
) {}
21 template <SizedLike
<int> T
> void h(T
) {}
22 template <SizedLike
<char> T
> void h(T
) {}
24 template <SizedLike
<int> T
> void i(T
) {}
25 template <SizedLike T
> void i(T
) {}
27 void j(SizedLike
<int> auto ...ints
) {}
29 #else /*included pch*/