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

# used by t/spec/S10-packages/basic.t

sub array_init() is export {
    my @array;
    push @array, 'just one element';
    return ~@array;
}