​
    Can you provides examples of such refactorings ?


Refactoring

    int x = aShort;
    foo(x, x);

to

    let int x = aShort
    in foo(x, x);

Reply via email to