[perl #126530] [JVM] Can't concatenate Bufs

2016-05-17 Thread Christian Bartolomaeus via RT
On Sat Oct 31 20:31:41 2015, coke wrote: > See S03-operators/buf.t > > Both of these fail: > > ok $a ~ $b eq Buf.new(1, 2, 3, 1, 2, 3, 4), '~ and eq work on bufs'; > is-deeply Buf.new(1, 2, 3) ~ Buf.new(4, 5), Buf.new(1, 2, 3, 4, 5), '~ > concatenates'; These tests pass now (again). I'm closing

[perl #126530] [JVM] Can't concatenate Bufs

2015-10-31 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #126530] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126530 > See S03-operators/buf.t Both of these fail: ok $a ~ $b eq Buf.new(1, 2, 3, 1, 2, 3, 4),