Accept new baselines

This commit is contained in:
Anders Hejlsberg 2019-09-04 16:46:38 -07:00
parent 43d3dc8e17
commit 1a28fd0d9f
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ var e1: number | string | boolean;
>e1 : string | number | boolean
f1(a1); // string
>f1(a1) : unknown
>f1(a1) : string
>f1 : <T>(x: string | T) => T
>a1 : string

View file

@ -104,8 +104,8 @@ const c4 = f3(b); // true
>b : boolean
const c5 = f3("abc"); // never
>c5 : unknown
>f3("abc") : unknown
>c5 : "abc"
>f3("abc") : "abc"
>f3 : <T>(x: string | false | T) => T
>"abc" : "abc"