Issue created from fantomas-online
Code
let inline (%%) x y = ((x % y) + y) % y
let aVeryLongVariableName = 0
let a = (if aVeryLongVariableName = 0 then 1 else -1) %% 4
Result
let inline (%%) x y = ((x % y) + y) % y
let aVeryLongVariableName = 0
let a =
(if aVeryLongVariableName = 0 then
1
else
-1)
%% 4
Problem description
Fantomas incorrectly moves the custom %% operator to a new line which makes the code not compile anymore.
Extra information
Options
Fantomas master branch at 1/1/1990
Default Fantomas configuration
Issue created from fantomas-online
Code
Result
Problem description
Fantomas incorrectly moves the custom
%%operator to a new line which makes the code not compile anymore.Extra information
Options
Fantomas master branch at 1/1/1990
Default Fantomas configuration