-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
78 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module type T = sig | ||
module type s = module type of One.Make(Two) | ||
module M : s | ||
open M | ||
open Three | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[[1m[36mNotification[0m]: [1mcases/module_type_expr.ml:l2.2−46[0m, | ||
a non-resolvable module, [1mOne[0m, has been replaced by an approximation | ||
[[1m[36mNotification[0m]: [1mcases/module_type_expr.ml:l2.2−46[0m, | ||
a non-resolvable module, [1mTwo[0m, has been replaced by an approximation | ||
[[1m[36mNotification[0m]: [1mcases/module_type_expr.ml:l5.2−12[0m, | ||
a non-resolvable module, [1mThree[0m, has been replaced by an approximation | ||
{ | ||
"version" : [0, 11, 0], | ||
"dependencies" : | ||
[{ | ||
"file" : "cases/module_type_expr.ml", | ||
"deps" : [["Two"], ["Three"], ["One"]] | ||
}], | ||
"local" : | ||
[{ "module" : ["Module_type_expr"], "ml" : "cases/module_type_expr.ml" }], | ||
"unknown" : [["One"], ["Three"], ["Two"]] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module X = struct end | ||
|
||
module type T = sig | ||
open One.Make(Two).Sub | ||
open Three | ||
module F(X:sig end): sig module Sub: sig module A: sig end end end | ||
open F(X).Sub | ||
open A | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[[1m[36mNotification[0m]: [1mcases/open_functor.ml:l4.2−24[0m, | ||
a non-resolvable module, [1mOne[0m, has been replaced by an approximation | ||
[[1m[36mNotification[0m]: [1mcases/open_functor.ml:l4.2−24[0m, | ||
a non-resolvable module, [1mTwo[0m, has been replaced by an approximation | ||
[[1m[36mNotification[0m]: [1mcases/open_functor.ml:l5.2−12[0m, | ||
a non-resolvable module, [1mThree[0m, has been replaced by an approximation | ||
[[1m[35mWarning[0m]: [1mcases/open_functor.ml:l7.2−15[0m, name resolution for [1mX[0m was | ||
ambiguous, due to the opening of the external module [1mThree[0m, at | ||
location [1ml5.2−12[0m. Spurious dependencies might be inferred due to this | ||
ambiguity. | ||
{ | ||
"version" : [0, 11, 0], | ||
"dependencies" : | ||
[{ | ||
"file" : "cases/open_functor.ml", | ||
"deps" : [["Two"], ["Three"], ["One"]] | ||
}], | ||
"local" : [{ "module" : ["Open_functor"], "ml" : "cases/open_functor.ml" }], | ||
"unknown" : [["One"], ["Three"], ["Two"]] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters