Skip to content
New issue

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

Abstract module types should not be allowed to hide static components #9

Open
OlivierNicole opened this issue Feb 3, 2017 · 0 comments

Comments

@OlivierNicole
Copy link
Owner

This causes a segfault when compiling the following code:

module E:sig
  module type V
  module L : functor (Y:(functor (X:V) -> V)) -> V
  module A : functor (X:V) (Y:V) -> V
end = struct
  module type V = sig end
  module L = functor (Y:(functor (X:V) -> V)) -> struct end
  module A = functor (X:V) (Y:V) -> X
end

open E
module R = L(functor (X:V) -> A(X)(X))
OlivierNicole pushed a commit that referenced this issue Jul 22, 2024
The filename ça.ml is NFD normalized. The test source now the two
normalizations for each unit identifiers.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant