xref: /openbsd-src/gnu/usr.bin/perl/dist/Storable/t/HAS_ATTACH.pm (revision b39c515898423c8d899e35282f4b395f7cad3298)
1*b39c5158Smillertpackage HAS_ATTACH;
2*b39c5158Smillert
3*b39c5158Smillertsub STORABLE_attach {
4*b39c5158Smillert  ++$attached_count;
5*b39c5158Smillert  return bless [], 'HAS_ATTACH';
6*b39c5158Smillert}
7*b39c5158Smillert
8*b39c5158Smillert++$loaded_count;
9*b39c5158Smillert
10*b39c5158Smillert1;
11