This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Revert "[perl #77688] tie $scalar can tie a handle"
[perl5.git]
/
t
/
op
/
tie.t
diff --git
a/t/op/tie.t
b/t/op/tie.t
index
5acd9a9
..
a9fb89e
100644
(file)
--- a/
t/op/tie.t
+++ b/
t/op/tie.t
@@
-953,14
+953,3
@@
print ref tied *$rin, "\n";
EXPECT
main
f
-########
-
-# tie $glob_copy vs tie *$glob_copy
-sub TIESCALAR { print "TIESCALAR\n" }
-sub TIEHANDLE{ print "TIEHANDLE\n" }
-$f = *foo;
-tie *$f, "";
-tie $f, "";
-EXPECT
-TIEHANDLE
-TIESCALAR