lst-0173-godb.cpp
//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/YTTE96rfc
int main() {
int ungerade[5] = { 1,3,7,9,11 };
auto &[ eins, zwei, drei, vier, fuenf ] = ungerade;
auto &[ two, bee, pi ] = mkTpl(); // (ERR) kein &-Binden an Tempwerte
Point p0{ 10, 15 };
auto &[ the_x, the_y ] = p0;
}