One of the many things I don't like about C++ is that auto isn't type inference but instead C++ has type "deduction" which is a little different, in some cases a type will be "deduced" even though what you wrote was ambiguous and you may have wanted a different type.
Funny they mention Java that has got type inference few years now. Even C got a weaker version of C++'s auto in C23.