The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use warnings;
use strict;

BEGIN {
	if("$]" < 5.006001) {
		require Test::More;
		Test::More::plan(skip_all => "core bug makes this test crash");
	}
}

use Test::More tests => 5;

BEGIN { use_ok "Lexical::SealRequireHints"; }

use t::eval_0;

ok 1;

1;