We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type t = int val f : t -> bool (*@ b = f t *)
gives
module S = struct let t = declare_abstract_type ~var:"t" () end let () = let spec = M.int ^!> bool in declare "f is Ok" spec R.f C.f let () = let fuel = 100 in main fuel
where:
t
f
M.int
S.t
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gives
where:
t
is declared as an abstract type despite the fact that it is notf
usesM.int
where we would expectS.t
The text was updated successfully, but these errors were encountered: