The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# File automatically generated from BurntSushi/toml-test
use utf8;
binmode STDIN, ':encoding(UTF-8)';
binmode STDOUT, ':encoding(UTF-8)';
open my $fh, '<', "./t/toml-test/invalid/integer/invalid-oct.toml" or die $!;
binmode $fh, ':raw';
my $toml = do{ local $/; <$fh>; };
close $fh;
ok dies(sub{ scalar from_toml($toml, strict => 1) }), 'strict_mode dies on integer/invalid-oct';
done_testing;