blob: daaaf31cf6cfc0432518acd94bb44c13d419035c [file] [log] [blame]
// { dg-do compile { target c++20 } }
struct a {};
template <bool> using b = a;
template <typename> struct c;
template <typename d>
requires requires(d e) { e[0]; }
struct c<d> {
static constexpr bool f = [] { return false; }.operator()();
};
b<c<unsigned[]>::f> b0{};