first cut at named parameters
[p5sagit/Function-Parameters.git] / t / name_3.fail
CommitLineData
20f5d15a 1#!perl
2use warnings;
3use strict;
4
5use Function::Parameters {
6 func => {
7 name => 'required',
8 },
9
10 f => {
11 name => 'prohibited',
12 },
13
14 method => {
15 name => 'required',
16 shift => '$this',
17 },
18};
19
20my $bad = method () { $this };