File: a0.pm

package info (click to toggle)
libautovivification-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 352 kB
  • sloc: perl: 2,745; ansic: 265; makefile: 7
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;