TypeScript/tests/cases/compiler/protoInIndexer.ts
2014-07-12 17:30:19 -07:00

5 lines
96 B
TypeScript

class X {
constructor() {
this['__proto__'] = null; // used to cause ICE
}
}