# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #125454] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=125454 >
$ perl6 -v This is perl6 version 2015.06-36-g164f1e0 built on MoarVM version 2015.06-16-g46e941c $ perl6 -e 'pipe "ls"' Saw 1 occurrence of deprecated code. ================================================================================ :p for pipe seen at: src/gen/m-CORE.setting, line 18616 Deprecated since v2015.6, will be removed with release v2015.9! Please use pipe($path,...) instead. -------------------------------------------------------------------------------- Please contact the author to have these occurrences of deprecated code adapted, so that this message will disappear! Please note that *ALL* deprecated features will be removed at the RC-0 release (expected September 2015). -- The problem here is that "Please use pipe($path,...) instead." is telling the user to use the construct that was just used. Deprecation warnings ought to advise the user to use something else, not the same thing. jnthn tells me that FROGGS is currently working on cleaning stuff up in this area. So this might be a transitional thing. Just filing it so that we don't forget about it.