Skip to content

Commit 1fab504

Browse files
committed
rebase over type var print order change
1 parent 9306375 commit 1fab504

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ocaml/testsuite/tests/typing-layouts/basics.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,7 +1291,7 @@ let q () =
12911291
()
12921292

12931293
[%%expect{|
1294-
val ( let* ) : ('b : any) 'a. 'a -> (t_float64 -> 'b) -> unit = <fun>
1294+
val ( let* ) : 'a ('b : any). 'a -> (t_float64 -> 'b) -> unit = <fun>
12951295
val q : unit -> unit = <fun>
12961296
|}]
12971297

@@ -1303,7 +1303,7 @@ let q () =
13031303
assert false
13041304

13051305
[%%expect{|
1306-
val ( let* ) : ('b : any) 'a. 'a -> ('b -> t_float64) -> unit = <fun>
1306+
val ( let* ) : 'a ('b : any). 'a -> ('b -> t_float64) -> unit = <fun>
13071307
val q : unit -> unit = <fun>
13081308
|}]
13091309

ocaml/testsuite/tests/typing-layouts/basics_alpha.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,7 @@ let q () =
13211321
()
13221322

13231323
[%%expect{|
1324-
val ( let* ) : ('b : any) 'a. 'a -> (t_float64 -> 'b) -> unit = <fun>
1324+
val ( let* ) : 'a ('b : any). 'a -> (t_float64 -> 'b) -> unit = <fun>
13251325
val q : unit -> unit = <fun>
13261326
|}]
13271327

@@ -1347,7 +1347,7 @@ let q () =
13471347
assert false
13481348

13491349
[%%expect{|
1350-
val ( let* ) : ('b : any) 'a. 'a -> ('b -> t_float64) -> unit = <fun>
1350+
val ( let* ) : 'a ('b : any). 'a -> ('b -> t_float64) -> unit = <fun>
13511351
val q : unit -> unit = <fun>
13521352
|}]
13531353

0 commit comments

Comments
 (0)