// PR c++/100065 // { dg-do compile { target c++20 } } template struct bool_constant { static constexpr bool value = B; constexpr operator bool() const { return value; } }; using true_type = bool_constant; using false_type = bool_constant; template struct X { template X(T); }; template explicit(b) X(bool_constant) -> X; X false_ = false_type{}; // OK X true_ = true_type{}; // { dg-error "explicit deduction guide" }