__END__ # NAME Unterminated here-doc in string eval eval "< sub {}; undef *^H } 1 EXPECT Constant(1) unknown at - line 3, at end of line Execution of - aborted due to compilation errors. ######## # NAME Float constant overloading returning undef use overload; BEGIN { overload::constant float => sub {}; undef *^H } 1.1 EXPECT Constant(1.1) unknown at - line 3, at end of line Execution of - aborted due to compilation errors. ######## # NAME Binary constant overloading returning undef use overload; BEGIN { overload::constant binary => sub {}; undef *^H } 0x1 EXPECT Constant(0x1) unknown at - line 3, at end of line Execution of - aborted due to compilation errors. ######## # NAME String constant overloading returning undef use overload; BEGIN { overload::constant q => sub {}; undef *^H } '1', "1$_", tr"a"", s""a" EXPECT Constant(q) unknown at - line 3, near "'1'" Constant(qq) unknown at - line 3, within string Constant(tr) unknown at - line 3, within string Constant(s) unknown at - line 3, within string Execution of - aborted due to compilation errors. ######## # NAME Regexp constant overloading when *^H is undefined use overload; BEGIN { overload::constant qr => sub {}; undef *^H } /a/, m'a' EXPECT Constant(qq) unknown at - line 3, within pattern Constant(q) unknown at - line 3, within pattern Execution of - aborted due to compilation errors. ######## # NAME \N{...} when charnames fails to load but without an error # SKIP ? exists $ENV{PERL_UNICODE} ? "Unreliable under some PERL_UNICODE settings" : 0 BEGIN { ++$_ for @INC{"charnames.pm","_charnames.pm"} } "\N{a}" EXPECT Constant(\N{a}) unknown at - line 2, within string Execution of - aborted due to compilation errors. ######## # NAME Integer constant overloading returning undef use overload; BEGIN { overload::constant integer => sub {} } 1 EXPECT Constant(1): Call to &{$^H{integer}} did not return a defined value at - line 3, at end of line Execution of - aborted due to compilation errors. ######## # NAME Float constant overloading returning undef use overload; BEGIN { overload::constant float => sub {} } 1.1 EXPECT Constant(1.1): Call to &{$^H{float}} did not return a defined value at - line 3, at end of line Execution of - aborted due to compilation errors. ######## # NAME Binary constant overloading returning undef use overload; BEGIN { overload::constant binary => sub {} } 0x1 EXPECT Constant(0x1): Call to &{$^H{binary}} did not return a defined value at - line 3, at end of line Execution of - aborted due to compilation errors. ######## # NAME String constant overloading returning undef use overload; BEGIN { overload::constant q => sub {} } '1', "1$_", tr"a"", s""a" EXPECT Constant(q): Call to &{$^H{q}} did not return a defined value at - line 3, near "'1'" Constant(qq): Call to &{$^H{q}} did not return a defined value at - line 3, within string Constant(tr): Call to &{$^H{q}} did not return a defined value at - line 3, within string Constant(s): Call to &{$^H{q}} did not return a defined value at - line 3, within string Execution of - aborted due to compilation errors. ######## # NAME Regexp constant overloading returning undef use overload; BEGIN { overload::constant qr => sub {} } /a/, m'a' EXPECT Constant(qq): Call to &{$^H{qr}} did not return a defined value at - line 3, within pattern Constant(q): Call to &{$^H{qr}} did not return a defined value at - line 3, within pattern Execution of - aborted due to compilation errors. ######## # NAME Unterminated delimiter for here document <<"foo EXPECT Unterminated delimiter for here document at - line 1. ######## # NAME Unterminated qw// qw/ EXPECT Can't find string terminator "/" anywhere before EOF at - line 1. ######## # NAME Unterminated q// qw/ EXPECT Can't find string terminator "/" anywhere before EOF at - line 1. ######## # NAME Unterminated '' ' EXPECT Can't find string terminator "'" anywhere before EOF at - line 1.