The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=== Circular Reference Protection
# When we try to serialize, it should NOT infinite loop
--- perl
$VAR1 = [
          {
            'a' => 'b',
            'c' => [
                     {},
                     2
                   ]
          },
          []
        ];
$VAR1->[0]{'c'}[0] = $VAR1->[0];
$VAR1->[1] = $VAR1->[0]{'c'};
[ $VAR1 ]

--- error: E_CIRCULAR