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_ATTACH.pm
CommitLineData
2f796f32
AMS
1package HAS_ATTACH;
2
3sub STORABLE_attach {
4 ++$attached_count;
5 return bless [], 'HAS_ATTACH';
6}
7
8++$loaded_count;
9
101;