set_up_inc('../lib');
}
-plan tests => 9;
+plan tests => 10;
my @expect = qw(
b1
local $TODO = 'RT #2754: CHECK{exit 0} is broken';
fresh_perl_is('CHECK{exit 0}; print "still here"', '', {}, 'RT #2754: CHECK{exit 0} should exit');
}
+
+TODO: {
+ local $TODO = 'RT #2917: INIT{} in eval is wrongly considered too late';
+ fresh_perl_is('eval "INIT { print qq(in init); };";', 'in init', {}, 'RT #2917: No constraint on how late INIT blocks can run');
+}