MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / main

Function main

tests/LambdaHandler5Test.cpp:1–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1int main()
2{
3 // empty lambda directly invoked with empty body
4 []{}();
5
6
7 []{ 1 * 2; }();
8
9
10 int a;
11 int b;
12
13 [](int& x, int& y) { x = x + y; }(a, b);
14
15}
16

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected