http://qs1969.pair.com?node_id=852710

zer has asked for the wisdom of the Perl Monks concerning the following question:

This one is a bit vague to me. When I load up an xml file which was previously written by XML::Simple i get this error:

A Abort trap
The code is as follows
#!/usr/bin/perl use strict; use Encoding; use XML::Simple; use utf8; use Data::Dumper; $|++; open my $xmlf,"<:encoding(UTF-8)", "xml/breadtitle.xml" or die $!; binmode STDOUT,":utf8"; my $x=XML::Simple->new(); print "A\n"; my $xm=$x->XMLin($xmlf) or die $!; print "B\n";
The xml file is located here

Thank you,