You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LLVM backend (#1837) does not implement uset, as no test case in the Lean4 test suite produces a uset. Add a test that produces a uset, and generate the right code for it. A potential test case is:
structurePointwherex : USize
y : UInt32
@[noinline]defPoint.right (p : Point) : Point :=
{ p with x := p.x + 1 }
defmain : IO Unit :=
IO.println (Point.right ⟨0, 0⟩).x
The text was updated successfully, but these errors were encountered:
The LLVM backend (#1837) does not implement
uset
, as no test case in the Lean4 test suite produces auset
. Add a test that produces auset
, and generate the right code for it. A potential test case is:The text was updated successfully, but these errors were encountered: