package MyPackage; use Data::Dumper; use 5.006; use Tests; use constant { VALID => 1, INVALID => 2, ERROR => 0, }; use strict; use warnings; require Exporter; use AutoLoader qw(AUTOLOAD); our @ISA = qw(Exporter); our %EXPORT_TAGS = ( 'all' => [ qw(VALID INVALID ERROR) ], 'codes' => [ qw(VALID INVALID ERROR)], ); our @EXPORT_OK = qw(@{ $EXPORT_TAGS{'all'} }); our @EXPORT = qw(); #Intentionally left blank our $VERSION = v0.0.1;