The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use warnings;
use strict;

use Test::More;
use B;
use lib "t/lib";

use aliased 'Really::Long::Module::Name';

my $cv = B::svref_2object(\&Name);
is($cv->GV->STASH->NAME, 'aliased', 'installed symbol was compiled in the aliased package');

done_testing;