mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-18 17:27:54 -05:00
Delete bad baseline
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
=== tests/cases/conformance/es6/for-ofStatements/for-of45.ts ===
|
||||
var array = [{x: [0], y: {p: ""}}]
|
||||
>array : { x: number[]; y: { p: string; }; }[]
|
||||
>[{x: [0], y: {p: ""}}] : { x: number[]; y: { p: string; }; }[]
|
||||
>{x: [0], y: {p: ""}} : { x: number[]; y: { p: string; }; }
|
||||
>x : number[]
|
||||
>[0] : number[]
|
||||
>y : { p: string; }
|
||||
>{p: ""} : { p: string; }
|
||||
>p : string
|
||||
|
||||
for (var {x: [a], y: {p}} of array) {
|
||||
>x : unknown
|
||||
>a : number
|
||||
>y : unknown
|
||||
>p : string
|
||||
>array : { x: number[]; y: { p: string; }; }[]
|
||||
|
||||
a;
|
||||
>a : number
|
||||
|
||||
p;
|
||||
>p : string
|
||||
}
|
||||
Reference in New Issue
Block a user