We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef417b commit 19f70f6Copy full SHA for 19f70f6
tests/cases/compiler/indirectTypeParameterReferences.ts
@@ -22,3 +22,8 @@ combined(comb => {
22
comb.b
23
comb.a
24
})
25
+
26
+// Repro from #19091
27
28
+declare function f<T>(a: T): { a: typeof a };
29
+let n: number = f(2).a;
0 commit comments