Subject: | space between invocant and colon causes syntax error |
$ cat bug/invocant-space
#!perl
use Method::Signatures::Simple;
method foo($this : $x, $y) {}
__END__
$ perl bug/invocant-space
syntax error at bug/invocant-space line 3, near "$this :"
Execution of bug/invocant-space aborted due to compilation errors.
Space between $this and : causes a syntax error.