summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-recmod/t11bad.ml
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typing-recmod/t11bad.ml')
-rw-r--r--testsuite/tests/typing-recmod/t11bad.ml20
1 files changed, 14 insertions, 6 deletions
diff --git a/testsuite/tests/typing-recmod/t11bad.ml b/testsuite/tests/typing-recmod/t11bad.ml
index f6f2fed846..58f186ebdb 100644
--- a/testsuite/tests/typing-recmod/t11bad.ml
+++ b/testsuite/tests/typing-recmod/t11bad.ml
@@ -1,9 +1,9 @@
-(* TEST
-flags = " -w -a "
-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. *)
+
+
+
+
*)
(* Bad (not regular) *)
@@ -11,3 +11,11 @@ module rec A : sig type 'a t = 'a list B.t end
= struct type 'a t = 'a list B.t end
and B : sig type 'a t = <m: 'a array B.t> end
= struct type 'a t = <m: 'a array B.t> end;;
+
+(* TEST
+ flags = " -w -a ";
+ ocamlc_byte_exit_status = "2";
+ setup-ocamlc.byte-build-env;
+ ocamlc.byte;
+ check-ocamlc.byte-output;
+*)