summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/dist/Storable/t/HAS_ATTACH.pm
blob: 72855aa101a22ea943d5436c55a10a29de7547d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package HAS_ATTACH;

sub STORABLE_attach {
  ++$attached_count;
  return bless [], 'HAS_ATTACH';
}

++$loaded_count;

1;