We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've distilled my file down to the following snippet:
module M1 = { include X({ let r = x => {z: s => s}; }); let f = (m, x) => x; let f_z = (m, x) => x; let g = {z: s => s}; let u = s => {z: s => s}; }; module M6 = { include X({ let r = x => {z: s => s}; }); let f = (m, x) => x; let f_z = (m, x) => x; let g = {z: s => s}; let u = s => {z: s => s}; }; module M5 = { include X({ let r = x => {z: s => s}; }); let f = (m, x) => x; let f_z = (m, x) => x; let g = {z: s => s}; let u = s => {z: s => s}; }; module M4 = { include X({ let r = x => {z: s => s}; }); let f = (m, x) => x; let f_z = (m, x) => x; let g = {z: s => s}; let u = s => {z: s => s}; }; module M3 = { include X({ let r = x => {z: s => s}; }); let f = (m, x) => x; let f_z = (m, x) => x; let g = {z: s => s}; let u = s => {z: s => s}; }; module M2 = { include X({ let r = x => {z: s => s}; }); let f = (m, x) => x; let f_z = (m, x) => x; let g = {z: s => s}; let u = s => {z: s => s}; };
Which still demonstrates the problem:
$ time refmt --print=binary refmt-repro.re > /dev/null Stack overflow real 0m17.570s user 0m17.173s sys 0m0.395s
Environment info:
There is similar issue #2190 but looks like it's caused by different pattern of code.
The text was updated successfully, but these errors were encountered:
doesn't stack overflow anymore, but might be because I'm testing on 5.x which has unlimited stack size
Sorry, something went wrong.
No branches or pull requests
I've distilled my file down to the following snippet:
Which still demonstrates the problem:
Environment info:
There is similar issue #2190 but looks like it's caused by different pattern of code.
The text was updated successfully, but these errors were encountered: