Btw. the problem is not the syntax, but people not understanding it
A backslash as last character on a line in shell extends it to the next line, using just that line gives the error that the command with an empty name does not exist.
echo something | \
tee -
is identical to
echo something | tee -
Ralf