summaryrefslogtreecommitdiff
path: root/t/op/bless.t
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2000-08-08 04:02:03 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-08 13:59:28 +0000
commit016a42f39635e4e96555aee41f820c77d820b582 (patch)
tree3cfac07e13ee167607d71d30768c88c315decf5a /t/op/bless.t
parent5507c167c2091faf0e9f5cec15afc3162980c610 (diff)
downloadperl-016a42f39635e4e96555aee41f820c77d820b582.tar.gz
Augment #6539 a bit: don't croak if there's magic in the air.
Subject: Re: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF) Message-Id: <200008080202.DAA09147@crypt.compulink.co.uk> p4raw-id: //depot/perl@6545
Diffstat (limited to 't/op/bless.t')
-rw-r--r--t/op/bless.t18
1 files changed, 14 insertions, 4 deletions
diff --git a/t/op/bless.t b/t/op/bless.t
index ccabcb869c..46bf6c311e 100644
--- a/t/op/bless.t
+++ b/t/op/bless.t
@@ -1,6 +1,6 @@
#!./perl
-print "1..29\n";
+print "1..31\n";
BEGIN {
chdir 't' if -d 't';
@@ -28,7 +28,7 @@ $b1 = bless [], "B";
print expected($b1, "B", "ARRAY"), "ok 2\n";
$c1 = bless \(map "$_", "test"), "C";
print expected($c1, "C", "SCALAR"), "ok 3\n";
-$test = "foo"; $d1 = bless \*test, "D";
+our $test = "foo"; $d1 = bless \*test, "D";
print expected($d1, "D", "GLOB"), "ok 4\n";
$e1 = bless sub { 1 }, "E";
print expected($e1, "E", "CODE"), "ok 5\n";
@@ -44,7 +44,7 @@ print expected($a1, "A", "HASH"), "ok 9\n";
# reblessing does modify object
-my $a2 = bless $a1, "A2";
+bless $a1, "A2";
print expected($a1, "A2", "HASH"), "ok 10\n";
# local and my
@@ -52,7 +52,7 @@ print expected($a1, "A2", "HASH"), "ok 10\n";
local $a1 = bless $a1, "A3"; # should rebless outer $a1
local $b1 = bless [], "B3";
my $c1 = bless $c1, "C3"; # should rebless outer $c1
- $test2 = ""; my $d1 = bless \*test2, "D3";
+ our $test2 = ""; my $d1 = bless \*test2, "D3";
print expected($a1, "A3", "HASH"), "ok 11\n";
print expected($b1, "B3", "ARRAY"), "ok 12\n";
print expected($c1, "C3", "SCALAR"), "ok 13\n";
@@ -115,3 +115,13 @@ print expected(bless([]), 'main', "ARRAY"), "ok 22\n";
$a1 = bless {}, "A4";
$b1 = eval { bless {}, $a1 };
print $@ ? "ok 29\n" : "not ok 29\t# $b1\n";
+
+# class is an overloaded ref
+{
+ package H4;
+ use overload '""' => sub { "C4" };
+}
+$h1 = bless {}, "H4";
+$c4 = eval { bless \$test, $h1 };
+print expected($c4, 'C4', "SCALAR"), "ok 30\n";
+print $@ ? "not ok 31\t# $@" : "ok 31\n";