http://qs321.pair.com?node_id=870425


in reply to Re: eval and goto: no worky?
in thread eval and goto: no worky?

Interesting, I didn't see a warning with warnings and strict on. Did you find that in the documentation?

Replies are listed 'Best First'.
Re^3: eval and goto: no worky?
by Anonymous Monk on Nov 09, 2010 at 23:10 UTC
    foo( "a" ); sub foo { eval { goto &foo2; } or warn $@; } sub foo2 { print "foo2 called with @_\n"; } __END__ Can't goto subroutine from an eval-block at - line 4.
Re^3: eval and goto: no worky?
by ikegami (Patriarch) on Nov 10, 2010 at 01:19 UTC
    It's not a warning, it's a fatal error. You successfully caught the error and subsequently ignored it. An Anonymous Monk shows how you could actually look at the error you are hiding.