import some (modified) MS tests
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / paren_plus_open_block.t
CommitLineData
633048d5 1#!perl
2
3use strict;
4use warnings FATAL => 'all';
5
6package Foo;
7
8use Test::More "no_plan";
9use Function::Parameters qw(:strict);
10
11method foo(
12 $arg
13)
14{
15 return $arg
16}
17
18is( Foo->foo(23), 23 );