@SuppressWarnings("rawtypes")
@Test
public void reproduceIssue() {
int reps = 100;
Allocator eventAllocator = Allocator.of(SlabOperation.class);
final SlabOperation op = (SlabOperation) eventAllocator.allocate(reps);
for (int i = 0; i < reps; i++) {
op.move(1);
op.setMagic((byte) 0x80);
op.setOpCode((byte) 0x09);