File: a0.pm

package info (click to toggle)
libautovivification-perl 0.18-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 436 kB
  • sloc: perl: 3,573; ansic: 1,507; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
package autovivification::TestRequired4::a0;
no autovivification qw<strict fetch>;
use autovivification::TestRequired4::b0;
sub error {
 local $@;
 autovivification::TestRequired4::b0->get;
 return $@;
}
1;