FStarLang/FStar

Quantifiers uncurrying in resugar is buggy

Open

#2,363 opened on Sep 24, 2021

View on GitHub
 (0 comments) (0 reactions) (1 assignee)F* (258 forks)auto 404
component/printereasygood first issuekind/bug

Repository metrics

Stars
 (3,068 stars)
PR merge metrics
 (PR metrics pending)

Description

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.

Contributor guide