lst-0971-godb.cpp
//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/a8zP84j1x
#include <thread>
#include <iostream>
#include <system_error>
int main() {
try {
std::thread().detach(); // das wird fehlschlagen
} catch(std::system_error& e) {
std::cout
<< "system_error mit Code:" << e.code()
<< " Meldung:" << e.what()
<< '\n';
}
}