6 lines
74 B
C++
6 lines
74 B
C++
int main()
|
|
{
|
|
int ret = 0;
|
|
return ([&ret]() -> int { return ret; })();
|
|
}
|