| 6 | }; |
| 7 | |
| 8 | int demonstrate() { |
| 9 | demonstrator D; |
| 10 | D.template templated_function<bool>(); |
| 11 | D.template templated_function<float>(); |
| 12 | D.template templated_function<>(); // Invalid without <> since Clang 19 |
| 13 | return 42; |
| 14 | } |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected