# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #126679] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=126679 >
There are skipped tests in S32-str/split-simple.t which die with the following error mode: $ perl6-j -e 'say "a b".split(/\s/, :v)' java.lang.RuntimeException: Cannot access a native attribute as a reference attribute in block <unit> at -e:1 Moar gives the following output: $ perl6-m -e 'say "a b".split(/\s/, :v)' (a 「 」 b) If one splits on a literal whitespace, the command does not die (same output on Moar): $ perl6-j -e 'say "a b".split(" ", :v)' (a b)