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
One test fails with (The aptly named list_torture):
error: ././././Out.lean:126:41: application type mismatch
Exc_list_int xs
argument
xs
has type
List Nat : Type
but is expected to have type
List Int : Type
so we need at least a List Nat to List Int conversion. But there is likely a more general problem when we start nesting types like list(option(list(nat))) and list(option(list(int))) in Sail.
The text was updated successfully, but these errors were encountered:
has type
List (Option (wrapper (List (Option (wrapper (List (Option (wrapper Nat)))))))) : Type
but is expected to have type
List (Option (wrapper (List (Option (wrapper (List (Option (wrapper Int)))))))) : Type
One test fails with (The aptly named
list_torture
):so we need at least a
List Nat
toList Int
conversion. But there is likely a more general problem when we start nesting types likelist(option(list(nat)))
andlist(option(list(int)))
in Sail.The text was updated successfully, but these errors were encountered: