Skip to content

Commit ab51ccc

Browse files
committed
Accept baseline
1 parent 753f0f8 commit ab51ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/baselines/reference/inferentialTypingUsingApparentType2.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function foo<T extends { m(p: string): number }>(x: T): T {
1313
}
1414

1515
foo({ m(x) { return x.length } });
16-
>foo({ m(x) { return x.length } }) : { }
16+
>foo({ m(x) { return x.length } }) : { m(x: string): number; }
1717
>foo : <T extends { m(p: string): number; }>(x: T) => T
1818
>{ m(x) { return x.length } } : { m(x: string): number; }
1919
>m : (x: string) => number

0 commit comments

Comments
 (0)