Subject: | Can't stack block braces |
This is example from perlsyn:
do {{
next if $x == $y;
# do something here
}} until $x++ > $z;
always results in:
do {
{
next if $x == $y;
# do something here
}
} until $x++ > $z;
no matter which stacking or tightness options are used.