Skip to content

Commit 638ad1d

Browse files
promote tests
1 parent 1f63ec7 commit 638ad1d

File tree

8 files changed

+54
-0
lines changed

8 files changed

+54
-0
lines changed

test/passing/refs.ahrefs/exp_grouping-parens.ml.ref

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,3 +578,9 @@ let () =
578578
$ y
579579
in
580580
fooooooooooo x)
581+
582+
let f () =
583+
f
584+
(g a (fun () ->
585+
let x = y in
586+
z))

test/passing/refs.ahrefs/exp_grouping.ml.ref

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -662,3 +662,10 @@ let () =
662662
in
663663
fooooooooooo x
664664
end
665+
666+
let f () =
667+
f
668+
(g a begin fun () ->
669+
let x = y in
670+
z
671+
end)

test/passing/refs.default/exp_grouping-parens.ml.ref

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,3 +595,9 @@ let () =
595595
$ y
596596
in
597597
fooooooooooo x)
598+
599+
let f () =
600+
f
601+
(g a (fun () ->
602+
let x = y in
603+
z))

test/passing/refs.default/exp_grouping.ml.ref

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,3 +680,10 @@ let () =
680680
in
681681
fooooooooooo x
682682
end
683+
684+
let f () =
685+
f
686+
(g a begin fun () ->
687+
let x = y in
688+
z
689+
end)

test/passing/refs.janestreet/exp_grouping-parens.ml.ref

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,3 +677,10 @@ let () =
677677
in
678678
fooooooooooo x)
679679
;;
680+
681+
let f () =
682+
f
683+
(g a (fun () ->
684+
let x = y in
685+
z))
686+
;;

test/passing/refs.janestreet/exp_grouping.ml.ref

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,3 +765,11 @@ let () =
765765
fooooooooooo x
766766
end
767767
;;
768+
769+
let f () =
770+
f
771+
(g a begin fun () ->
772+
let x = y in
773+
z
774+
end)
775+
;;

test/passing/refs.ocamlformat/exp_grouping-parens.ml.ref

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,3 +599,9 @@ let () =
599599
$ y
600600
in
601601
fooooooooooo x )
602+
603+
let f () =
604+
f
605+
(g a (fun () ->
606+
let x = y in
607+
z ) )

test/passing/refs.ocamlformat/exp_grouping.ml.ref

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -686,3 +686,10 @@ let () =
686686
in
687687
fooooooooooo x
688688
end
689+
690+
let f () =
691+
f
692+
(g a begin fun () ->
693+
let x = y in
694+
z
695+
end )

0 commit comments

Comments
 (0)