summaryrefslogtreecommitdiff
path: root/dist/Carp/t/vivify_stash.t
blob: 7906748a4f7e6acba026bd0dbeda6aa1dbe26e8c (plain)
1
2
3
4
5
6
7
8
9
BEGIN { print "1..1\n"; }

our $has_utf8; BEGIN { $has_utf8 = exists($::{"utf8::"}); }

use Carp;

print !(exists($::{"utf8::"}) xor $has_utf8) ? "" : "not ", "ok 1\n";

1;