summaryrefslogtreecommitdiff
path: root/cpan/experimental
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-10-17 18:07:47 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-10-17 20:28:37 -0700
commitbaabe3fb419f01704a85104dce71b0c631a4a373 (patch)
treee678982ce70016159b2b424ee513c881158ead4e /cpan/experimental
parent7caca87c551af84ff2565616310024f95c4a5c7c (diff)
downloadperl-baabe3fb419f01704a85104dce71b0c631a4a373.tar.gz
Rename lvalue references
Also correct the description of lvref magic. When it was first added, it was for list assignments only, but that soon changed.
Diffstat (limited to 'cpan/experimental')
-rw-r--r--cpan/experimental/t/basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/experimental/t/basic.t b/cpan/experimental/t/basic.t
index 5dc2eafab9..df3ce2ce7f 100644
--- a/cpan/experimental/t/basic.t
+++ b/cpan/experimental/t/basic.t
@@ -52,7 +52,7 @@ END
if ($] >= 5.021005) {
is (eval <<'END', 1, 'lvalue ref compiles') or diag $@;
- use experimental 'lvalue_refs';
+ use experimental 'refaliasing';
\@a = \@b;
is(\@a, \@b, '@a and @b are the same after \@a=\@b');
1;