Here are 2 example lines: ``` int a = *(c + b + 3) + *(d + e + 3); float b = (*(c + b + 3) + *(d + e + 3)) / 2.0; ``` style50 insists on a space between * and (d in the second one, which would be poor style. <img width="385" alt="style50deref" src="https://user-images.githubusercontent.com/6343970/82625674-e8248d80-9c39-11ea-8448-f99fa663bd1d.png"> Might be confused by the parentheses? @crossroads1112