The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Bad;

use strict;
use warnings;
use Function::Parameters qw(:strict);

## $info->{} should be $info{}
method meth1 ($foo) {
  my %info;
  $info->{xpto} = 1;
}

method meth2 ($bar) {}

'ok'