TypeScript/tests/cases/conformance/es6/computedProperties/computedPropertyNames24_ES6.ts

11 lines
247 B
TypeScript

// @target: es6
class Base {
bar() {
return 0;
}
}
class C extends Base {
// Gets emitted as super, not _super, which is consistent with
// use of super in static properties initializers.
[super.bar()]() { }
}