Skip to content

Commit d85a212

Browse files
committed
Rename
1 parent 15b6c0c commit d85a212

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/cases/compiler/parameterInference.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ function subs(s) {
1616
// => (s: string) => number & (s: number) => string
1717

1818
// CASE 3
19-
function f(x: number){
19+
function f3(x: number){
2020
return x;
2121
}
2222

23-
function g(x){ return f(x); };
24-
// => function g(x: number): number
23+
function g3(x){ return f3(x); };
24+
// => function g3(x: number): number
25+
2526
// CASE 4
2627
declare function f4(g: Function)
2728
function g4(x) {

0 commit comments

Comments
 (0)