| 158 | // --------------------------------------------------------------------------- |
| 159 | |
| 160 | auto given_lambda_module_no_bindings() { |
| 161 | auto module = [] { return di::make_injector(); }; |
| 162 | return di::make_injector(module()).create<int>(); |
| 163 | } |
| 164 | |
| 165 | auto expected_lambda_module_no_bindings() { return 0; } |
| 166 |
nothing calls this directly
no test coverage detected