summaryrefslogtreecommitdiff
path: root/t/comp/interpolate.t
diff options
context:
space:
mode:
Diffstat (limited to 't/comp/interpolate.t')
-rw-r--r--t/comp/interpolate.t15
1 files changed, 0 insertions, 15 deletions
diff --git a/t/comp/interpolate.t b/t/comp/interpolate.t
deleted file mode 100644
index 3472d97cf1..0000000000
--- a/t/comp/interpolate.t
+++ /dev/null
@@ -1,15 +0,0 @@
-BEGIN {
- require "test.pl"
-}
-
-use strict;
-use warnings;
-
-plan 2;
-
-{
- my %foo = (aap => "monkey");
- my $foo = '';
- is("@{[$foo{'aap'}]}", 'monkey', 'interpolation of hash lookup with space between lexical variable and subscript');
- is("@{[$foo {'aap'}]}", 'monkey', 'interpolation of hash lookup with space between lexical variable and subscript');
-}