File: Bad.pm

package info (click to toggle)
libkavorka-perl 0.039-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 696 kB
  • sloc: perl: 2,850; makefile: 6; sh: 6
file content (16 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use v5.14;
use warnings;

package Local::Bad;

use Kavorka;

sub create {
	my ($class, $config) = @_;
	return $foo->bar($config);
}

method delete { ... }

1;