summaryrefslogtreecommitdiff
path: root/testsuite/tests/warnings/w51_bis.ml
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/warnings/w51_bis.ml')
-rw-r--r--testsuite/tests/warnings/w51_bis.ml20
1 files changed, 14 insertions, 6 deletions
diff --git a/testsuite/tests/warnings/w51_bis.ml b/testsuite/tests/warnings/w51_bis.ml
index bb5bcaac1a..660210627c 100644
--- a/testsuite/tests/warnings/w51_bis.ml
+++ b/testsuite/tests/warnings/w51_bis.ml
@@ -1,11 +1,11 @@
-(* TEST
+(* TEST_BELOW
+(* Blank lines added here to preserve locations. *)
+
+
+
+
-flags = "-w +A-70"
-* setup-ocamlc.byte-build-env
-** ocamlc.byte
-compile_only = "true"
-*** check-ocamlc.byte-output
*)
@@ -14,3 +14,11 @@ let rec foldl op acc = function
| x :: xs ->
try (foldl [@tailcall]) op (op x acc) xs
with Not_found -> assert false
+
+(* TEST
+ flags = "-w +A-70";
+ setup-ocamlc.byte-build-env;
+ compile_only = "true";
+ ocamlc.byte;
+ check-ocamlc.byte-output;
+*)