TypeScript/tests/cases/compiler/missingPropertiesOfClassExpression.ts

6 lines
110 B
TypeScript
Raw Normal View History

2015-08-27 23:22:42 +02:00
class George extends class { reset() { return this.y; } } {
constructor() {
super();
}
}