File: Foo.pm

package info (click to toggle)
libmodule-pluggable-perl 3.4-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 296 kB
  • ctags: 76
  • sloc: perl: 1,045; makefile: 40
file content (17 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package InnerTest::Plugin::Foo;
use strict;

our $FOO = 1;

package InnerTest::Plugin::Bar;
use strict;

sub bar {}

package InnerTest::Plugin::Quux;
use strict;
use base qw(InnerTest::Plugin::Bar);



1;