mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
16 lines
404 B
TypeScript
16 lines
404 B
TypeScript
// @target: es6
|
|
class Base {
|
|
}
|
|
class C extends Base {
|
|
constructor() {
|
|
super();
|
|
() => {
|
|
var obj = {
|
|
// Ideally, we would capture this. But the reference is
|
|
// illegal, and not capturing this is consistent with
|
|
//treatment of other similar violations.
|
|
[(super(), "prop")]() { }
|
|
};
|
|
}
|
|
}
|
|
} |