Not renaming variables inside parens
x => (x)
compiles to x_34 => (x)
rather than x_34 => (x_34)
. On the other hand, x => x
compiles correctly to x_34 => x_34
x => (x)
compiles to x_34 => (x)
rather than x_34 => (x_34)
. On the other hand, x => x
compiles correctly to x_34 => x_34