summaryrefslogtreecommitdiff
path: root/t/op/tie.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/tie.t')
-rwxr-xr-xt/op/tie.t7
1 files changed, 0 insertions, 7 deletions
diff --git a/t/op/tie.t b/t/op/tie.t
index 8cb45398ad..1fe37e1624 100755
--- a/t/op/tie.t
+++ b/t/op/tie.t
@@ -578,10 +578,3 @@ tie $h, "main";
print $h,"\n";
EXPECT
3.3
-########
-sub TIESCALAR { bless {} }
-sub FETCH { shift()->{i} ++ }
-tie $h, "main";
-print $h.$h;
-EXPECT
-01