2024-02-21 14:52:47 +03:00

6 lines
74 B
C++

int main()
{
int ret = 0;
return ([&ret]() -> int { return ret; })();
}