1 2 3 4 5 6 7 8 9 10
template <typename F> F start(F f) { return f; } void instantiate_start_with_lambda() { start([]() {}); }