Add additional test

This commit is contained in:
Anders Hejlsberg 2017-10-11 16:03:15 -07:00
parent 9ef417b846
commit 19f70f6d3d

View file

@ -22,3 +22,8 @@ combined(comb => {
comb.b
comb.a
})
// Repro from #19091
declare function f<T>(a: T): { a: typeof a };
let n: number = f(2).a;