TypeScript/tests/cases/compiler/superCallWithCommentEmit01.ts
Daniel Rosenwasser 486f156a69 Added test.
2016-11-12 01:40:37 -08:00

10 lines
183 B
TypeScript

class A {
constructor(public text: string) { }
}
class B extends A {
constructor(text: string) {
// this is subclass constructor
super(text)
}
}