Added test.

This commit is contained in:
Daniel Rosenwasser 2016-11-12 01:40:37 -08:00
parent 0e879c0bbf
commit 486f156a69

View file

@ -0,0 +1,10 @@
class A {
constructor(public text: string) { }
}
class B extends A {
constructor(text: string) {
// this is subclass constructor
super(text)
}
}