summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-modules/pr7207.ml
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typing-modules/pr7207.ml')
-rw-r--r--testsuite/tests/typing-modules/pr7207.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/typing-modules/pr7207.ml b/testsuite/tests/typing-modules/pr7207.ml
index 8100064875..a061a34d67 100644
--- a/testsuite/tests/typing-modules/pr7207.ml
+++ b/testsuite/tests/typing-modules/pr7207.ml
@@ -5,7 +5,7 @@
module F (X : sig end) = struct type t = int end;;
type t = F(Does_not_exist).t;;
[%%expect{|
-module F : functor (X : sig end) -> sig type t = int end
+module F : functor (X : sig end) -> sig type t = int end
Line 2, characters 9-28:
2 | type t = F(Does_not_exist).t;;
^^^^^^^^^^^^^^^^^^^