TypeScript/tests/cases/compiler/superNoModifiersCrash.ts
Wesley Wigham 3e850156da Propagate isRestParameter through symbol instantiation (#18087)
* Add repro from #17666

* Actually use repro from issue, propegate isRestParameter on instantiation
2017-08-31 10:15:42 -07:00

14 lines
238 B
TypeScript

// @allowjs: true
// @outDir: ../
// @filename: File.js
class Parent {
initialize() {
super.initialize(...arguments)
return this.asdf = ''
}
}
class Child extends Parent {
initialize() {
}
}