#!perl -w
$|=1;
BEGIN {
print "1..0\n";
exit 0;
}
}
use strict;
use Safe 1.00;
# eval within an eval: the outer eval is compiled into the sub, the inner is
# compiled (by the outer) at runtime and so is subject to runtime opmask
# setup args for wrap_code_refs_within including nested data
# Avoid infinite recursion when looking for coderefs
%a = ();
%b = (a => \%a);
$a{b} = \%b;
42;