3 This will always die, see L<re::engine::Plugin/comp> for why.
5 This can be made to live regardless of C<eval> by adding C<| G_EVAL>
6 to C<call_sv()> in C<Plugin_comp>.
12 use Test::More skip_all => 'Always dies';
14 use re::engine::Plugin (
15 comp => sub { die "died at comp time" },
18 eval { "str" ~~ /noes/ };
21 local $TODO = 'passing tests for known bug with how we handle eval';