From dd6c8177e5440c89519dc12801e5cda199096ebf Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Wed, 26 Sep 2001 11:53:37 +0000 Subject: [PATCH] (Retracted by #12233.) p4raw-id: //depot/perl@12232 --- t/op/gv.t | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/t/op/gv.t b/t/op/gv.t index a423cb4..c9f7a86 100755 --- a/t/op/gv.t +++ b/t/op/gv.t @@ -11,7 +11,7 @@ BEGIN { use warnings; -print "1..41\n"; +print "1..42\n"; # type coersion on assignment $foo = 'foo'; @@ -105,16 +105,6 @@ print ref *x{FORMAT} eq "FORMAT" ? "ok 21\n" : "not ok 21\n"; print *{*x{GLOB}} eq "*main::STDOUT" ? "ok 22\n" : "not ok 22\n"; print {*x{IO}} "ok 23\n"; -{ - my $warn; - local $SIG{__WARN__} = sub { - $warn .= $_[0]; - }; - my $val = *x{FILEHANDLE}; - print {*x{IO}} ($warn =~ /is deprecated/ ? "ok 24\n" : "not ok 24\n"); - -} - # test if defined() doesn't create any new symbols { @@ -185,5 +175,15 @@ print {*x{IO}} "ok 23\n"; print $g; } +{ + my $warn; + local $SIG{__WARN__} = sub { + $warn .= $_[0]; + }; + my $val = *x{FILEHANDLE}; + print {*x{IO}} ($warn =~ /is deprecated/ ? "ok 42\n" : "not ok 42\n"); + +} + __END__ ok 41 -- 2.7.4