diff --git a/sample_files/ocaml_after.ml b/sample_files/ocaml_after.ml index fe4d16a2a..788c9dfb2 100644 --- a/sample_files/ocaml_after.ml +++ b/sample_files/ocaml_after.ml @@ -6,3 +6,6 @@ let do_stuff x = match x with | `Foo -> 1 | _ -> 3 + +let stuffs y = + y + 1 diff --git a/sample_files/ocaml_before.ml b/sample_files/ocaml_before.ml index 7c0757ba0..42ed79c89 100644 --- a/sample_files/ocaml_before.ml +++ b/sample_files/ocaml_before.ml @@ -8,3 +8,6 @@ let do_stuff x = | `Foo -> 1 | `Bar -> 2 | _ -> 3 + +let stuffs y = + y + 1