From: rafl Date: Sat, 18 Oct 2008 11:49:59 +0000 (+0000) Subject: Test multiline signatures where the closing parent has a smaller offset than the... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aafff9cd2deac1c87315f9289b1bac210f71b16a;p=p5sagit%2FDevel-Declare.git Test multiline signatures where the closing parent has a smaller offset than the opening one. git-svn-id: http://dev.catalyst.perl.org/repos/bast/Devel-Declare/1.000/trunk@4933 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/t/method.t b/t/method.t index 9833e30..4e92af6 100644 --- a/t/method.t +++ b/t/method.t @@ -122,7 +122,9 @@ my ($test_method1, $test_method2, @test_list); return bless({ @_ }, $class); }; - method foo ($foo) { + method foo ( + $foo + ) { return (ref $self).': Foo: '.$foo; };