This commit is contained in:
Anders Hejlsberg
2018-09-14 14:07:22 -07:00
parent 359f2ebd54
commit 6200aa0206
@@ -79,4 +79,8 @@ const z4 = z && b;
const z5 = z && v;
const z6 = z && u;
const z7 = z && n;
const z8 = z && z;
const z8 = z && z;
function f1<T extends string | number | boolean | undefined | null>(t: T) {
const r1 = t && [0];
}