From: Gurusamy Sarathy Date: Thu, 3 Dec 1998 01:32:16 +0000 (+0000) Subject: add failed check-in of goto.t from change#1867 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=379c5dcc2964f5ce6d1fea34580b612a7f9ebc2d;p=p5sagit%2Fp5-mst-13.2.git add failed check-in of goto.t from change#1867 p4raw-link: @1867 on //depot/perl: e8f7dd13f8ad36b160a674831b76d23cb33bfe5a p4raw-id: //depot/perl@2440 --- diff --git a/t/op/goto.t b/t/op/goto.t index a62c899..8096aff 100755 --- a/t/op/goto.t +++ b/t/op/goto.t @@ -2,7 +2,7 @@ # "This IS structured code. It's just randomly structured." -print "1..12\n"; +print "1..13\n"; while ($?) { $foo = 1; @@ -54,7 +54,7 @@ sub bar { exit; FINALE: -print "ok 12\n"; +print "ok 13\n"; exit; bypass: @@ -93,5 +93,13 @@ print $@ =~ /Can't find label NOWHERE/ ? "ok 8\n" : "not ok 8\n"; for (9..11) { start(bless([$_]), 'bar'); } } +sub auto { + goto &loadit; +} + +sub AUTOLOAD { print @_ } + +auto("ok 12\n"); + $wherever = FINALE; goto $wherever;