$a=*{}; # doesn't like that $a=*{''}; # that seems like a completely different glob! $a=*; # oops! - the * eats the ; $a=(*); # doesn't like that either