EBCDIC: must protect also compile time so that
the illegal UTF-EBCDIC is not seen.
p4raw-id: //depot/perl@16557
if (ord("ß") == 0337) { # Latin-1 only.
# bug id 20001008.001
+ eval <<'__EOT__';
my $test = 248;
my @x = ("stra\337e 138","stra\337e 138");
for (@x) {
use utf8; # needed for the raw UTF-8
$latin =~ s!(s)tr(?:aß|s+e)!$1tr.!; # \303\237 after the a
}
+__EOT__
} else {
for (248..249) {
print "ok $_ # Skip: only in Latin-1\n";