The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::UsesData;
use strict;
use warnings;

my $data;
sub get_data {
    return $data if $data;
    local $/;
    return $data = <DATA>;
}

1;
__DATA__
abc