diff options
author | KC Sivaramakrishnan <kc@kcsrk.info> | 2022-10-04 13:39:40 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 10:09:40 +0200 |
commit | 75b8d68064472a160aa4ee0eb6029561615c6a80 (patch) | |
tree | fc44c57e64759f1f91db03007b269dea9126b3cb /testsuite/tests/warnings | |
parent | ca8414c35242b12fc22ad8730951d4272eb7155d (diff) | |
download | ocaml-75b8d68064472a160aa4ee0eb6029561615c6a80.tar.gz |
Manual chapters on parallelism and memory model (#11280)
Add manual chapters on parallelism and memory model
Diffstat (limited to 'testsuite/tests/warnings')
-rw-r--r-- | testsuite/tests/warnings/w52.ml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/warnings/w52.ml b/testsuite/tests/warnings/w52.ml index 85c372460b..d83a4dcab9 100644 --- a/testsuite/tests/warnings/w52.ml +++ b/testsuite/tests/warnings/w52.ml @@ -10,7 +10,7 @@ Line 1, characters 38-43: ^^^^^ Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of this constructor's arguments. They are only for information -and may change in future versions. (See manual section 11.5) +and may change in future versions. (See manual section 13.5) |}];; let () = try () with Match_failure ("Any",_,_) -> ();; @@ -20,7 +20,7 @@ Line 1, characters 35-46: ^^^^^^^^^^^ Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of this constructor's arguments. They are only for information -and may change in future versions. (See manual section 11.5) +and may change in future versions. (See manual section 13.5) |}];; let () = try () with Match_failure (_,0,_) -> ();; @@ -30,7 +30,7 @@ Line 1, characters 35-42: ^^^^^^^ Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of this constructor's arguments. They are only for information -and may change in future versions. (See manual section 11.5) +and may change in future versions. (See manual section 13.5) |}];; type t = @@ -55,7 +55,7 @@ Line 2, characters 7-17: ^^^^^^^^^^ Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of this constructor's arguments. They are only for information -and may change in future versions. (See manual section 11.5) +and may change in future versions. (See manual section 13.5) val f : t -> unit = <fun> |}];; @@ -68,7 +68,7 @@ Line 2, characters 8-10: ^^ Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of this constructor's arguments. They are only for information -and may change in future versions. (See manual section 11.5) +and may change in future versions. (See manual section 13.5) val g : t -> unit = <fun> |}];; @@ -95,6 +95,6 @@ Line 2, characters 7-34: ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of this constructor's arguments. They are only for information -and may change in future versions. (See manual section 11.5) +and may change in future versions. (See manual section 13.5) val j : t -> unit = <fun> |}];; |