xref: /openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/gh_29_trailing_false_value.t (revision 256a93a44f36679bee503f12e49566c2183f6181)
1use strict;
2use warnings;
3use Test::More;
4
5BEGIN { plan tests => 1 };
6
7BEGIN { $ENV{PERL_JSON_BACKEND} = 0; }
8
9use JSON::PP;
10
11{ #SKIP_UNLESS_PP 2.90,1
12    eval { JSON::PP->new->decode('{}0') };
13    ok $@;
14}
15