Код: Выделить всё
#include
struct C {
int x;
};
int main() {
static C obj = [] {
obj.x = 3;
return obj;
}();
std::print("{}", obj.x);
}
< /code>
objПодробнее здесь: https://stackoverflow.com/questions/796 ... fined-in-c
Код: Выделить всё
#include
struct C {
int x;
};
int main() {
static C obj = [] {
obj.x = 3;
return obj;
}();
std::print("{}", obj.x);
}
< /code>
obj