actual formatting: ```cpp struct S { explicit operator int*(); }; auto foo() { S s; return s.operator int * (); } ``` expected formatting: ```cpp struct S { explicit operator int*(); }; auto foo() { S s; return s.operator int *(); } ```