File: Foo.pm

package info (click to toggle)
libmodule-pluggable-perl 5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 440 kB
  • ctags: 100
  • sloc: perl: 1,510; makefile: 2
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;