| 1 | int 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 |
nothing calls this directly
no outgoing calls
no test coverage detected