alias test {
echo -a a $&
b | echo -a c }
}

the above code will echo one line that says

a b | echo -a c

instead of the expected

a b
c