# New Ticket Created by  Will Coleda 
# Please include the string:  [perl #120526]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=120526 >



S05-substitution/subst.t has the following test which fails on both rakudos:

{
    $_ = "a\nb\tc d";
    ok ss/a b c d/w x y z/, 'successful substitution returns True';
    # XXX This test fails.
    is $_, "w\nx\ty z", 'ss/.../.../ preserves whitespace';

    dies_ok {"abc" ~~ ss/a b c/ x y z/}, 'Cannot ss/// string literal';
}

-- 
Will "Coke" Coleda

Reply via email to