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

Function main

tests/LambdaHandler2Test.cpp:1–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1int main()
2{
3#if 0
4 [](){}();
5
6 [](){ return 1;}();
7#endif
8 int (*fp)(int, char) = [](int a, char b){ return a+b;};
9
10// int (*fp)(int, char) = static_cast<int (*)(int, char)>(__lambda_8_26{}.operator __lambda_8_26::retType());
11
12// int (*fd)(int) = [](auto a){ return a;};
13
14}
15

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected