Subject: | can't use unicode in custom keywords |
% cat try.pl
#!perl
use utf8;
use strict;
use warnings;
use Method::Signatures::Simple function_keyword => 'přöç';
přöç foo($x) { $x }
__END__
% perl try.pl
Global symbol "$x" requires explicit package name at try.pl line 8.
Type of arg 1 to main::přöç must be block or sub {} (not subroutine entry) at try.pl line 8, near ") {"
syntax error at try.pl line 8, near ") {"
Global symbol "$x" requires explicit package name at try.pl line 8.
Execution of try.pl aborted due to compilation errors.