The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use YAML::Syck;
use Test::More 'no_plan';

my $warnings;
BEGIN { $SIG{__WARN__} = sub { $warnings .= "@_" } }

$YAML::Syck::ImplicitUnicode = 1;
ok !$warnings, "no warnings";