File tree 2 files changed +12
-0
lines changed
res_syntax/tests/printer/expr
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ type upp = (. ()) => (. ()) => int
31
31
type uu2 = (. unit , unit ) => unit
32
32
type up2 = (. (), ()) => unit
33
33
34
+ type cnested = (string => unit ) => unit
35
+ type unested = (. (. string ) => unit ) => unit
36
+
34
37
let pipe = a -> foo (. b , c )
35
38
36
39
@@uncurried
@@ -69,4 +72,7 @@ type upp = () => () => int
69
72
type uu2 = (unit , unit ) => unit
70
73
type up2 = ((), ()) => unit
71
74
75
+ type cnested = (. (. string ) => unit ) => unit
76
+ type unested = (string => unit ) => unit
77
+
72
78
let pipe = a -> foo (b , c )
Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ type upp = (. ()) => (. ()) => int
31
31
type uu2 = (. unit, unit) => unit
32
32
type up2 = (. unit, unit) => unit
33
33
34
+ type cnested = (string => unit) => unit
35
+ type unested = (. (. string) => unit) => unit
36
+
34
37
let pipe = a->foo(. b, c)
35
38
36
39
@@uncurried
@@ -69,4 +72,7 @@ type upp = () => () => int
69
72
type uu2 = (unit, unit) => unit
70
73
type up2 = (unit, unit) => unit
71
74
75
+ type cnested = (. (. string) => unit) => unit
76
+ type unested = string => unit => unit
77
+
72
78
let pipe = a->foo(b, c)
You can’t perform that action at this time.
0 commit comments