Fixed with 7fa2ba77d438a7169f6b1e1 , tests needed
> On 30 Mar 2016, at 14:06, Joshua (via RT) <[email protected]>
> wrote:
>
> # New Ticket Created by Joshua
> # Please include the string: [perl #127803]
> # in the subject line of all future correspondence about this issue.
> # <URL: https://rt.perl.org/Ticket/Display.html?id=127803 >
>
>
> It's works fine if you explicitly Boolify the expression. It shouldn't need
> strict Boolification, it works fine with grep.
>
>> <one two three four five>.classify( *.contains: any('a'..'f') );
> P6opaque: no such attribute '$!reified'
>
>> <one two three four five>.classify( ?*.contains: any('a'..'f') );
> False => [two], True => [one three four five]
>
>> <one two three four five>.grep( *.contains: any('a'..'f') );
> (one three four five)