xref: /openbsd-src/gnu/usr.bin/perl/cpan/autodie/t/lib/OtherTypes.pm (revision b39c515898423c8d899e35282f4b395f7cad3298)
1package OtherTypes;
2no warnings;
3
4our $foo = 23;
5our @foo = "bar";
6our %foo = (mouse => "trap");
7open foo, "<", $0;
8
9format foo =
10foo
11.
12
13BEGIN {
14    $main::pvio = *foo{IO};
15    $main::pvfm = *foo{FORMAT};
16}
17
18sub foo { 1 }
19
20use autodie 'foo';
21
221;
23