The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
123456789101112 #!perluse warnings FATAL => 'all';use strict;use Test::More;use Function::Parameters qw(:strict);ok !eval 'fun foo(X[[';like $@, qr/missing type name/;done_testing;
#!perl
use
warnings
FATAL
=>
'all'
;
strict;
Test::More;
Function::Parameters
qw(:strict)
ok !
eval
'fun foo(X[['
like $@,
qr/missing type name/
done_testing;