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

use SubExporterModule qw/stuff/;
use Scalar::Util 'refaddr';
use namespace::autoclean;   # clean 'stuff' at end of compilation

sub method { }

use constant CAN => [ qw(method) ];
use constant CANT => [ qw(stuff refaddr) ];
1;