summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-modules-bugs/pr10693_bad.ml
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typing-modules-bugs/pr10693_bad.ml')
-rw-r--r--testsuite/tests/typing-modules-bugs/pr10693_bad.ml20
1 files changed, 14 insertions, 6 deletions
diff --git a/testsuite/tests/typing-modules-bugs/pr10693_bad.ml b/testsuite/tests/typing-modules-bugs/pr10693_bad.ml
index 4e964c9e13..02122c9096 100644
--- a/testsuite/tests/typing-modules-bugs/pr10693_bad.ml
+++ b/testsuite/tests/typing-modules-bugs/pr10693_bad.ml
@@ -1,9 +1,9 @@
-(* TEST
-flags = "-no-app-funct"
-ocamlc_byte_exit_status = "2"
-* setup-ocamlc.byte-build-env
-** ocamlc.byte
-*** check-ocamlc.byte-output
+(* TEST_BELOW
+(* Blank lines added here to preserve locations. *)
+
+
+
+
*)
module type Dep = sig type t val x : t end
module String = struct type t = string let x = "Forty Two" end
@@ -44,3 +44,11 @@ module N' = N.M(String)
module N'' = N'.M(Int)
let () = print_endline (Option.get N''.x)
+
+(* TEST
+ flags = "-no-app-funct";
+ ocamlc_byte_exit_status = "2";
+ setup-ocamlc.byte-build-env;
+ ocamlc.byte;
+ check-ocamlc.byte-output;
+*)