This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Uncomment and fix up tests at the end of Storable's blessed.t
[perl5.git] / dist / Storable / t / HAS_HOOK.pm
CommitLineData
754c00ca
NC
1package HAS_HOOK;
2
3sub STORABLE_thaw {
4 ++$thawed_count;
5}
6
7++$loaded_count;
8
91;