Skip to content

Instantly share code, notes, and snippets.

@shibayu36
Last active August 29, 2015 14:27
Show Gist options
  • Save shibayu36/c9768e370c361b436006 to your computer and use it in GitHub Desktop.
Save shibayu36/c9768e370c361b436006 to your computer and use it in GitHub Desktop.
Testing constant import by Test::UsedModules
package Sample1;
use Exporter::Lite;
use constant HOGE => 'fuga';
our @EXPORT_OK = qw(HOGE);
1;
package Sample2;
use Sample1 qw(HOGE);
sub hoge {
return HOGE;
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment