swc/crates/swc_ecma_parser/tests/tsc/superSymbolIndexedAccess6.ts

14 lines
183 B
TypeScript

//@target: ES5
var symbol: any;
class Foo {
static [symbol]() {
return 0;
}
}
class Bar extends Foo {
static [symbol]() {
return super[symbol]();
}
}