mirror of
https://github.com/mfontanini/libtins
synced 2026-01-23 02:35:57 +01:00
6 lines
74 B
C++
6 lines
74 B
C++
int main()
|
|
{
|
|
int ret = 0;
|
|
return ([&ret]() -> int { return ret; })();
|
|
}
|