Hi, I can't reproduce this; I would need the input file, version number and
parameters.
Thanks,
Steve
On Mon, Jul 14, 2014 at 4:46 AM, Dmytro Zagashev via RT <
bug-Perl-Tidy@rt.cpan.org> wrote:
Show quoted text> Mon Jul 14 07:46:08 2014: Request 97204 was acted upon.
> Transaction: Ticket created by ZDM
> Queue: Perl-Tidy
> Subject: Anonymous subs content indented incorrectly
> Broken in: 20140711
> Severity: Unimportant
> Owner: Nobody
> Requestors: ZDM@cpan.org
> Status: new
> Ticket <URL:
https://rt.cpan.org/Ticket/Display.html?id=97204 >
>
>
> Here is the example:
>
> my $aaa = { # OK
> bool => sub {
> my $self = shift;
>
> return;
> },
> '|' => sub {
> my $self = shift;
>
> return;
> },
> };
>
> use overload # ERROR
> bool => sub {
> my $self = shift;
>
> return;
> },
> '|' => sub {
> my $self = shift;
>
> return;
> };
>