Do C++20 concepts enable fixing template function as template argument problem?
If you try something relatively simple in C++20 it implodes with unhelpful error message spam. int main() { auto as = std::vector{1,3,24,}; auto bs = std::vector{1,4,10}; auto cs = std::…