()
| 162 | // this case. |
| 163 | { |
| 164 | function createObjectWithCustomProtoInArray() { |
| 165 | return [{__proto__: {a: T}, b: 'b'}]; |
| 166 | } |
| 167 | test(createObjectWithCustomProtoInArray, |
| 168 | (o) => o[0].__proto__.a, (o) => o[0].__proto__.a = T2); |
| 169 | const o1 = createObjectWithCustomProtoInArray(); |