1 // Regression test for the crash in
2 // https://github.com/llvm/llvm-project/issues/54537
4 // RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %s
5 // expected-no-diagnostics
7 template< class T > inline constexpr bool test_v = true;
11 A(const T = 1 ) requires test_v<T>;