1BEGIN { print "1..5\n"; }
2
3our $has_is_utf8; BEGIN { $has_is_utf8 = exists($utf8::{"is_utf8"}); }
4our $has_dgrade; BEGIN { $has_dgrade = exists($utf8::{"downgrade"}); }
5our $has_swashnew; BEGIN { $has_swashnew = exists($utf8::{"SWASHNEW"}); }
6our $has_strval; BEGIN { $has_strval = exists($overload::{"StrVal"}); }
7our $has_sv2obj; BEGIN { $has_sv2obj = exists($B::{"svref_2object"}); }
8
9use Carp;
10sub { sub { Carp::longmess("x") }->() }->(\1, "\x{2603}", qr/\x{2603}/);
11
12print !(exists($utf8::{"is_utf8"}) xor $has_is_utf8) ? "" : "not ", "ok 1\n";
13print !(exists($utf8::{"downgrade"}) xor $has_dgrade) ? "" : "not ", "ok 2\n";
14print !(exists($utf8::{"SWASHNEW"}) xor $has_swashnew) ? "" : "not ", "ok 3\n";
15print !(exists($overload::{"StrVal"}) xor $has_sv2obj) ? "" : "not ", "ok 4\n";
16print !(exists($B::{"svref_2object"}) xor $has_sv2obj) ? "" : "not ", "ok 5\n";
17
181;
19