File: padrange.t

package info (click to toggle)
libdevel-callparser-perl 0.002-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 288 kB
  • ctags: 13
  • sloc: perl: 73; makefile: 18
file content (17 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use warnings;
use strict;

use Test::More tests => 2;

use Devel::CallParser ();
sub tpad {
	my($a, $b, $c, $d);
	my($e, $f, $g, $h);
	my $i;
	is $i, undef;
	$i = 3;
}
tpad();
tpad();

1;