FStar
FStar copied to clipboard
Quantifiers uncurrying in resugar is buggy
A formula like forall x1. forall. x2. exists x3. phi
gets resugared to, and hence pretty printed as, forall x1 x2 x3. phi
. The bug is in the uncurry
function in FStar.Syntax.Reguar.fs
.