Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/andreasfertig/cppinsights
/ main
Function
main
tests/LambdaCapturingFunctionTest.cpp:7–21 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
5
}
6
7
int main()
8
{
9
using D = void(*)(int);
10
11
D d = Dummy;
12
13
d(2);
14
15
auto l = [&]()
16
{
17
d(3);
18
};
19
20
l();
21
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected