| 25 | auto glambda = [](auto a) { return a; }; |
| 26 | |
| 27 | void WithParamsGeneric() |
| 28 | { |
| 29 | int (*fp)(int) = glambda; |
| 30 | } |
| 31 | |
| 32 | auto lWithParamsAndNTTP = []<int X = 3, int Z = 4>(int x, int y) |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected