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
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))
The text was updated successfully, but these errors were encountered:
Test NFD normalized unit names (#9)
3897c58
The filename ça.ml is NFD normalized. The test source now the two normalizations for each unit identifiers.
No branches or pull requests
This causes a segfault when compiling the following code:
The text was updated successfully, but these errors were encountered: