Subject: | perltidy misparses control character variables |
% echo '$^One$0' > tmp.pl
% perl -MO=Deparse tmp.pl
$^O ne $0;
tmp.pl syntax OK
% perltidy tmp.pl -st -se
1: $^One$0
-----^
found Scalar where operator expected (previous token underlined)
$^One$0
%