lst-0341-godb.cpp
//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/erv34b67c
const Widget createWidget() { // Rückgabe als const-Wert
Widget result{};
return result;
}
int main() {
Widget w = createWidget(); // kopiert in neues nicht-const w
w.setNumber(100); // w ist nicht-const, verändern ist okay
}