| 30 | // template struct Function<int(int)>; |
| 31 | |
| 32 | int main() { |
| 33 | // Option 1 or 2 is required on some compilers |
| 34 | te::poly<Function<int(int)>> f{[](int i) { return i; }}; |
| 35 | assert(42 == f(42)); |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected