lst-1017-godb.cpp
//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/1boeTMMvf
MxStack<int> mxs{};
// …
// mehr Code
// …
if( ! mxs.isEmpty()) { // (ERR) nicht sicher
const auto value = mxs.top(); // (ERR) nicht sicher
mxs.pop(); // (ERR) nicht sicher
// …
// mehr Code
// …
}