TypeScript/tests/baselines/reference/protoInIndexer.types
Vladimir Matveev f06423bffc Revert "add part of test baselines"
This reverts commit 502b2ba321.
2016-03-09 17:08:26 -08:00

14 lines
267 B
Plaintext

=== tests/cases/compiler/protoInIndexer.ts ===
class X {
>X : X
constructor() {
this['__proto__'] = null; // used to cause ICE
>this['__proto__'] = null : null
>this['__proto__'] : any
>this : this
>'__proto__' : string
>null : null
}
}