The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use strict;
use warnings;
use Test::More tests => 1;

{
    package My::Obj;
    use Method::Signatures::Simple;

    method with_space ( $this : $that ) {
        return ($this, $that);
    }
}

is_deeply [ My::Obj->with_space (1) ], [ 'My::Obj', 1 ], 'space between invocant name and colon should parse';

__END__