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
The following program is rejected with Fatal error: exception Ctype.Unify(_):
Fatal error: exception Ctype.Unify(_)
module type T = sig type t val x : t end let get {I:T} () = I.x let f () = let implicit module M :T = struct type t = int let x = 0 end in get ()
but should be rejected with the usual message about a type constructor escaping its scope.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following program is rejected with
Fatal error: exception Ctype.Unify(_)
:but should be rejected with the usual message about a type constructor escaping its scope.
The text was updated successfully, but these errors were encountered: