The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# encoding: Latin9
# This file is encoded in Latin-9.
die "This file is not encoded in Latin-9.\n" if q{‚ } ne "\x82\xa0";

use Char;
print "1..3\n";

my $__FILE__ = __FILE__;

$text = '‚h‚nD‚r‚x‚rF‚Q‚Q‚T‚T‚T‚WF‚X‚T|‚P‚O|‚O‚RF|‚|‚“‚ˆF‚‚‚”‚‰‚‚Ž‚‚Œ';

local $^W = 0;

# 7.7 split‰‰ŽZŽq(ƒŠƒXƒgƒRƒ“ƒeƒLƒXƒg)
@_ = split(/F/, $text);
if (join('', map {"($_)"} @_) eq "(‚h‚nD‚r‚x‚r)(‚Q‚Q‚T‚T‚T‚W)(‚X‚T|‚P‚O|‚O‚R)(|‚|‚“‚ˆ)(‚‚‚”‚‰‚‚Ž‚‚Œ)") {
    print qq{ok - 1 \@_ = split(/F/, \$text); $^X $__FILE__\n};
}
else {
    print qq{not ok - 1 \@_ = split(/F/, \$text); $^X $__FILE__\n};
}

# 7.7 split‰‰ŽZŽq(ƒXƒJƒ‰ƒRƒ“ƒeƒLƒXƒg)
my $a = split(/F/, $text);
if (join('', map {"($_)"} @_) eq "(‚h‚nD‚r‚x‚r)(‚Q‚Q‚T‚T‚T‚W)(‚X‚T|‚P‚O|‚O‚R)(|‚|‚“‚ˆ)(‚‚‚”‚‰‚‚Ž‚‚Œ)") {
    print qq{ok - 2 \$a = split(/F/, \$text); $^X $__FILE__\n};
}
else {
    print qq{not ok - 2 \$a = split(/F/, \$text); $^X $__FILE__\n};
}

# 7.7 split‰‰ŽZŽq(voidƒRƒ“ƒeƒLƒXƒg)
split(/F/, $text);
if (join('', map {"($_)"} @_) eq "(‚h‚nD‚r‚x‚r)(‚Q‚Q‚T‚T‚T‚W)(‚X‚T|‚P‚O|‚O‚R)(|‚|‚“‚ˆ)(‚‚‚”‚‰‚‚Ž‚‚Œ)") {
    print qq{ok - 3 (void) split(/F/, \$text); $^X $__FILE__\n};
}
else {
    print qq{not ok - 3 (void) split(/F/, \$text); $^X $__FILE__\n};
}

__END__