aeneas icon indicating copy to clipboard operation
aeneas copied to clipboard

Tuple decomposition doesn't work well in the Lean backend

Open sonmarcho opened this issue 1 year ago • 0 comments

If we write:

let (x, y) := ...
f x y

the definition often gets desugared to something of the shape:

let __discr := ...
f __discr.1 __discr.2

This can be quite confusing.

sonmarcho avatar Aug 23 '24 12:08 sonmarcho