| 80 | |
| 81 | |
| 82 | int main() |
| 83 | { |
| 84 | FunctionWithRequiresForTemplateParametersAndReturn<a::A>(); |
| 85 | FunctionWithRequiresForTemplateParameters<a::A>(); |
| 86 | FunctionWithRequiresForReturn<a::A>(); |
| 87 | |
| 88 | ClsWithRequires<int> c{}; |
| 89 | |
| 90 | a::ClsWithRequires<int> ac{}; |
| 91 | |
| 92 | RequiresWithParens::f(Value{}); |
| 93 | } |