Skip to content

Commit 84c06b6

Browse files
committed
One more example.
1 parent 3d65ea9 commit 84c06b6

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

analysis/tests/src/Hover.res

+6
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,9 @@ let arity0b = (. (), . ()) => 3
124124

125125
let arity0c = (. (), ()) => 3
126126
// ^hov
127+
128+
let arity0d = (. ()) => {
129+
// ^hov
130+
let f = () => 3
131+
f
132+
}

analysis/tests/src/expected/Hover.res.txt

+3
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,6 @@ Hover tests/src/Hover.res 121:4
7979
Hover tests/src/Hover.res 124:4
8080
{"contents": "```rescript\n(. unit, unit) => int\n```"}
8181

82+
Hover tests/src/Hover.res 127:5
83+
{"contents": "```rescript\n(.) => unit => int\n```"}
84+

0 commit comments

Comments
 (0)