The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use strict;
use warnings;

package Test::SubPipeline::Subclass;
use base qw(Test::SubPipeline::Class);

sub second {
  my ($self, $arg) = @_;

  die unless $arg->{first};
  $arg->{second} = 'two';
}

1;