blob: ad24177f6440017efae7548c6273dfe4bfdfe9b5 [file] [log] [blame]
// { dg-do run { target c++26 xfail c++26 } }
// { dg-options "-lstdc++exp" }
// { dg-require-cpp-feature-test __cpp_lib_debugging }
#include <debugging>
#include <type_traits>
static_assert( noexcept(std::breakpoint()) );
static_assert( std::is_void_v<decltype(std::breakpoint())> );
int main()
{
std::breakpoint();
}