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

use Role::Tiny 'with';

with 'My::Does::Basic';

sub new { bless {} => shift }

sub turbo_charger {}
$My::Example::foo = 1;
sub foo() {}

1;