import more Method::Signatures tests
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / lib / Bad.pm
CommitLineData
700071de 1package Bad;
2
3use strict;
4use warnings;
5use Function::Parameters qw(:strict);
6
7## $info->{} should be $info{}
8method meth1 ($foo) {
9 my %info;
10 $info->{xpto} = 1;
11}
12
13method meth2 ($bar) {}
14
15'ok'