in reply to Re^2: Avoiding the == blues
in thread Avoiding the == blues

Well, saying "other languages" isn't quite correct, as it's the compiler that will issue a warning, if any. And gcc with -Wall will. It will even catch cases like:
if (x = y)
unlike Perls -w, which will let you do
if ($x = $y)
while keeping silent.