File: TestRequired6.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 (13 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
package autovivification::TestRequired6;

sub new { bless {} }

sub bar {
 exists $main::blurp->{bar};
}

sub baz {
 eval q[exists $main::blurp->{baz}];
}

1;