lst-0998-book.cpp
// https://godbolt.org/z/8TdzEGf3d
void hauptprogramm() {
std::jthread th{ &aufgabe1 };
std::vector data{ 0,1,2 };
data.at(666); // (ERR) löst out_of_range aus
}
// https://godbolt.org/z/8TdzEGf3d
void hauptprogramm() {
std::jthread th{ &aufgabe1 };
std::vector data{ 0,1,2 };
data.at(666); // (ERR) löst out_of_range aus
}