bash alias doesn't accept $1 

$1 doesn't work in bash alias:

$ alias test_p='echo 1:$1 2:$2 3:$3'
$ test_p sss ww bbb
1: 2: 3: sss ww bbb