From: Steve Hay Date: Mon, 14 Oct 2013 12:24:55 +0000 (+0100) Subject: perldelta - Fill in diagnostics section X-Git-Tag: upstream/5.20.0~1571 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b6950bd6ee7071e1ce320a5be15d057def237ff;p=platform%2Fupstream%2Fperl.git perldelta - Fill in diagnostics section --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 24b1238..9d046dc 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -410,7 +410,19 @@ XXX L =item * -XXX L +L + +(S experimental::postderef) This warning is emitted if you use the experimental +postfix dereference syntax. Simply suppress the warning if you want to use the +feature, but know that in doing so you are taking the risk of using an +experimental feature which may change or be removed in a future Perl version: + + no warnings "experimental::postderef"; + use feature "postderef", "postderef_qq"; + $ref->$*; + $aref->@*; + $aref->@[@indices]; + ... etc ... =back