The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use t::TestYAML tests => 1;

use YAML::XS;

sub libyaml {
   YAML::XS::Dump( $_[0] );
}

my @x = (256, 'xxx', libyaml({foo => 'bar'}));

isnt "@x", '256 xxx 256 xxx 256',
    "YAML::XS::LibYAML doesn't mess up the call stack";